| DecalNodeDrawOrder Property |
Gets or sets the draw order.
Namespace: DigitalRune.Graphics.SceneGraphAssembly: DigitalRune.Graphics (in DigitalRune.Graphics.dll) Version: 1.2.0.0 (1.2.1.14562)
Syntax public int DrawOrder { get; set; }
Public Property DrawOrder As Integer
Get
Set
public:
property int DrawOrder {
int get ();
void set (int value);
}
member DrawOrder : int with get, set
Property Value
Type:
Int32The draw order. The default value is 0.
Remarks
This property defines the order in which decals are drawn. Decals are drawn in ascending
order, i.e. decals with a higher value are drawn on top of decals with a lower value. The
draw order is only relevant when multiple decals overlap.
See Also