Gets or sets if Transparencies are used in Materials or not.

Namespace:  Ab3d
Assembly:  Ab3d.Reader3ds (in Ab3d.Reader3ds)
Version: 4.2.0.0 (4.2.0.0)

Syntax

C#
public bool DisableTransparencies { get; set; }
Visual Basic (Declaration)
Public Property DisableTransparencies As Boolean
Visual C++
public:
property bool DisableTransparencies {
	bool get ();
	void set (bool value);
}

Remarks

If true transparent materials are not used - In this case all transparent materials are made non-transparent - Opacity is set to 1.

This can be useful because WPF sometimes does not render the transparent objects correctly. If you have problems with transparent objest I recommend that you try to put all the transparent objects to be the last objects in the 3ds file so the transparent objects will be rendered last. If this does not work set this property to true.

See Also