Click or drag to resize
AB4D logo

RenderingStepsGroup Class

RenderingStepsGroup is a rendering step that can group multiple rendering steps inside its Children list of rendering steps.
Inheritance Hierarchy
SystemObject
  Ab3d.DirectXDXResourceBase
    Ab3d.DirectXDisposableDXResource
      Ab3d.DirectXDXSceneResource
        Ab3d.DirectXRenderingStepBase
          Ab3d.DirectXRenderingStepsGroup

Namespace: Ab3d.DirectX
Assembly: Ab3d.DXEngine (in Ab3d.DXEngine.dll) Version: 7.0.8865.1045
Syntax
C#
public class RenderingStepsGroup : RenderingStepBase

The RenderingStepsGroup type exposes the following members.

Constructors
 NameDescription
Public methodRenderingStepsGroup Constructor
Top
Properties
 NameDescription
Public propertyChildren Gets RenderingStepsList that holds the child rendering steps.
Top
Methods
 NameDescription
Public methodToString Returns a string that represents the current object.
(Overrides RenderingStepBaseToString)
Top
Remarks

RenderingStepsGroup is a rendering step that can group multiple rendering steps inside its Children list of rendering steps.

RenderingStepsGroup differences from other rendering steps:
- The OnRun(RenderingContext) method is never called for RenderingStepsGroup
- The event BeforeRunningStep is called before the first child is executed.
- The event AfterRunningStep is called after the last child is executed.

See Also