unreal.NiagaraGpuSyncMode

class unreal.NiagaraGpuSyncMode

Bases: EnumBase

ENiagara Gpu Sync Mode

C++ Source:

  • Plugin: Niagara

  • Module: Niagara

  • File: NiagaraCommon.h

NONE: NiagaraGpuSyncMode

Data will not be automatically pushed and could diverge between Cpu & Gpu.

Type:

0

SYNC_BOTH: NiagaraGpuSyncMode

Gpu will continuously push back to the Cpu and Cpu modifications will be pushed to the Gpu.

Type:

3

SYNC_CPU_TO_GPU: NiagaraGpuSyncMode

Cpu modifications will be pushed to the Gpu.

Type:

1

SYNC_GPU_TO_CPU: NiagaraGpuSyncMode

Gpu will continuously push back to the Cpu, this will incur a performance penalty.

Type:

2