Navigation
API > API/Plugins > API/Plugins/PCG
Modes for exporting the buffer from transient to persistent for downstream consumption.
| Name | EPCGExportMode |
| Type | enum |
| Header File | /Engine/Plugins/PCG/Source/PCG/Public/Compute/PCGComputeCommon.h |
| Include Path | #include "Compute/PCGComputeCommon.h" |
Syntax
enum EPCGExportMode
{
NoExport = 0,
ComputeGraphOutput = 1 << 0,
Inspection = 1 << 1,
DebugVisualization = 1 << 2,
}
Values
| Name | Remarks |
|---|---|
| NoExport | Buffer is transient and freed after usage. |
| ComputeGraphOutput | Buffer will be exported and a proxy will be output from the compute graph and passed to downstream nodes. |
| Inspection | Producer node is being inspected, read back data and store in inspection data. |
| DebugVisualization | Producer node is being debugged, read back data and execute debug visualization. |