Navigation
API > API/Plugins > API/Plugins/Niagara
References
| Module | Niagara |
| Header | /Engine/Plugins/FX/Niagara/Source/Niagara/Public/NiagaraCommon.h |
| Include | #include "NiagaraCommon.h" |
Syntax
enum ENiagaraGpuSyncMode
&123;
None,
SyncCpuToGpu,
SyncGpuToCpu,
SyncBoth,
&125;
Values
| Name | Description |
|---|---|
| None | Data will not be automatically pushed and could diverge between Cpu & Gpu. |
| SyncCpuToGpu | Cpu modifications will be pushed to the Gpu. |
| SyncGpuToCpu | Gpu will continuously push back to the Cpu, this will incur a performance penalty. |
| SyncBoth | Gpu will continuously push back to the Cpu and Cpu modifications will be pushed to the Gpu. |