Why my OnUpdate() keep Running even when there is no more NewlySpawned Component exist??
To Prove it: In debug console:
- "Found NewlySpawned." x 2
- "Updating" x infinite
System purpose: Any new Entity (that has NewlySpawned component Enabled) will have its position set (being set in SetPosJob), I want to stop OnUpdate() Running when no NewlySpawned component (or Query<NewlySpawned> return nothing).
Thanks for reading.