How to enumerate ALL nodes in a Sprite Kit scene?

一笑奈何 提交于 2019-12-28 04:04:10

问题


I want to enumerate all the nodes in my scene. Not just the ones that are a child of the scene itself, but also the children of those, and the children of those etc... So I want to be able to go through the whole node hierarchy.

Is there a method to do that without knowing how deep the node tree goes?


回答1:


Yep, use enumerateChildNodesWithName:usingBlock: and pass //* as the node name. You should be able to call that on any node.

It's actually one of the examples in Apple's docs:

//* This search string matches every node in the node tree.



来源:https://stackoverflow.com/questions/25749576/how-to-enumerate-all-nodes-in-a-sprite-kit-scene

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!