Navigation
API > API/Plugins > API/Plugins/DisplayCluster
A set of flags defining the post-process parameters to be received from the camera.
| Name | EDisplayClusterViewportCameraPostProcessFlags |
| 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 EDisplayClusterViewportCameraPostProcessFlags
{
None = 0,
EnablePostProcess = 1 << 0,
EnableDepthOfField = 1 << 1,
EnableNearClippingPlane = 1 << 2,
EnableICVFXColorGrading = 1 << 3,
EnableICVFXMotionBlur = 1 << 4,
EnableICVFXDepthOfFieldCompensation = 1 << 5,
All = 0xFF,
}
Values
| Name | Remarks |
|---|---|
| None | Ignore all post-processing from the camera. |
| EnablePostProcess | Use the PP settings from the specified camera. |
| EnableDepthOfField | Enable the CineCamera DoF PP settings from the specified camera. |
| EnableNearClippingPlane | Use the custom NearClippingPlane value from the specified cine camera. |
| EnableICVFXColorGrading | Use the DC ColorGrading from the specified ICVFX camera. (Supported by ICVFXCamera component only). |
| EnableICVFXMotionBlur | Use the DC Motion Blur settings from the specified ICVFX camera. |
| EnableICVFXDepthOfFieldCompensation | Use the DC Depth-Of-Field settings from the specified ICVFX camera. |
| All | Apply all possible post-processing from the camera. |