Hello. I'm a bit confused about entity creation and how it relates to subscenes.
I have a System (will be attached) that creates a chunk entity (gets created outside of the subscene), tries to set it's parent to a chunkworld entity that's already in the subscene (which doesnt work), creates a couple block entities (also created outside the subscene) and sets their parent to the chunk entity (which works). Then in the Job it makes 6 more face entities per block, however these entities are created within the subscene. The commented out line after sets the faces' parents to their respective blocks, and that works, taking them out of the subscene. It's commented out for demonstration.
My questions are:
Why are Entities created early in the system created outside of the subscene, while ones created in the job are created within?
How would I make sure entities created earlier get created in the subscene so I can parent them properly?
As always any help is appreciated.
system and screenshots are attached