Quick answer: Fixed-emitter writes go in System Stage. Tick group ordering: writer PrePhysics, reader PostPhysics.

System uses NDC to broadcast player position to other systems. Fixed emitter has Write to NDC module; reader sees nothing. System Stage was missing.

The Fix

Niagara System (writer):
  Tick Group:                 PrePhysics
  System Stage:
    + Write to NDC
        Channel:              SharedChannel
        Payload:              PlayerPosition

Niagara System (reader):
  Tick Group:                 PostPhysics
  Particle Spawn:
    + Read from NDC (same Channel)

System Stage runs at system level; right place for fixed-rate event broadcasts. Emitter Stage is for per-particle events.

Verifying

Reader emitter sees writer's payload. Niagara Debugger shows non-zero entries on the channel.

“System Stage. Tick order. NDC flows.”

Related Issues

For NDC writer reader, see data channels. For Stateless emitter, see stateless.

System Stage. Tick order.