When using game states would it be better to add the objects directly to the root node or attach them to a Node object and then attach them to the root Node? Is there a benefit of using a node over directly attaching them to the root Node?
the rootNode is just a node… so no.
(except of course if you need it to, for some sort of logic for example…)
Thank you…