Unity Instantiate各函数执行顺序
Posted Litmin
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity Instantiate各函数执行顺序相关的知识,希望对你有一定的参考价值。
GameObject go = Instantiate(aaa) ;
go.GetComponent<NewBehaviourScript>().Init();
Instantiate一个gameobject后,马上执行一个自定义的方法Init,经过测试发现顺序为Awake Init Start Update。
以上是关于Unity Instantiate各函数执行顺序的主要内容,如果未能解决你的问题,请参考以下文章
Unity中Instantiate一个prefab时需要注意的问题
在 object.instantiate (Unity) 之后音频不会立即播放