-
Beta Was this translation helpful? Give feedback.
Answered by
csprance
Jan 31, 2026
Replies: 1 comment 4 replies
-
Beta Was this translation helpful? Give feedback.
4 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment






Ah ya, so you either need to tell your system groups to run or you need to remove the system groups and just use a blank string '' on the system node group property
doing
ecs.world.process(delta)will only run the systems in the '' group which is system in no group.Since all of your systems are grouped, you need to call the group to execute.
ecs.world.process(delta, 'group_name')