Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个主节点 A 和一个名为“B”的 A 子节点,问题是当我 queue_free()到节点 b 并尝试查看 A 中有多少节点它给了我相同的数字。get_children()我正在通过使用inside_physics_process(delta)函数来测试A 中有多少个节点用于测试目的。
queue_free()
get_children()
_physics_process(delta)
在节点上调用 queue_free() 将在当前帧之后将其删除。在 _physics_process 函数重新启动后尝试调用 get_children() ,您会看到该节点已被删除。调用 free() 将立即删除它,但不建议这样做。