Click or drag to resize
AB4D logo

DXSceneRenderingQueues Property

RenderingQueues is a read only collection of rendering queues that represent queues of low lever objects that are prepared to be rendered with DirectX. RenderingQueue are rendered in the same order as in the RenderingQueues list. The rendering is done in the RenderObjectsRenderingStep rendering step.

Namespace: Ab3d.DirectX
Assembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax
C#
public ReadOnlyCollection<RenderingQueue> RenderingQueues { get; }

Property Value

ReadOnlyCollectionRenderingQueue
Remarks

RenderingQueues is a read only collection of rendering queues that represent queues of low lever objects that are prepared to be rendered with DirectX.

RenderingQueue are rendered in the same order as in the RenderingQueues list. The rendering is done in the RenderObjectsRenderingStep rendering step.

NOTE: A new RenderingQueues instance is created each time a new RenderingQueue is added to removed to this collection. So do not store an instance of this collection locally.

See Also