Godot节点的 ready init enter_tree process 方法执行顺序
Posted 张学徒
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Godot节点的 ready init enter_tree process 方法执行顺序相关的知识,希望对你有一定的参考价值。
Godot 3.3.2
场景节点
在 _ready()
_init()
_enter_tree()
process()
写上输出语句后,执行的输出结果
可以看到,单个节点的执行顺序:_init()
> _enter_tree()
> _ready()
> _process()
> _exit_tree()
除了 _ready()
是先执行完子节点,其余都是先执行父节点中的方法,然后执行子节点的
以上是关于Godot节点的 ready init enter_tree process 方法执行顺序的主要内容,如果未能解决你的问题,请参考以下文章