Navigation
API > API/Plugins > API/Plugins/DisplayCluster
Type of DCRA used by configuration
| Name | EDisplayClusterRootActorType |
| Type | enum |
| Header File | /Engine/Plugins/Runtime/nDisplay/Source/DisplayCluster/Public/Render/Viewport/Containers/DisplayClusterViewport_Enums.h |
| Include Path | #include "Render/Viewport/Containers/DisplayClusterViewport_Enums.h" |
Syntax
enum EDisplayClusterRootActorType
{
Preview = 1 << 0,
Scene = 1 << 1,
Configuration = 1 << 2,
Any = Preview | Scene | Configuration,
}
Values
| Name | Remarks |
|---|---|
| Preview | This DCRA will be used to render previews. The meshes and preview materials are created at runtime. |
| Scene | A reference to DCRA in the scene, used as a source for math calculations and references. |
| Configuration | Reference to DCRA, used as a source of configuration data from DCRA and its components. |
| Any | This value can only be used in very specific cases: For function GetRootActor() : Return any of the DCRAs that are not nullptr, in ascending order of type: Preview, Scene, Configuration. |