欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

unity

程序员文章站 2022-03-21 10:31:23
...

unity中awake()start()update()的作用

void Awake()
	{
		Debug.Log("Awake ");
	}

	void Start()
	{
		Debug.Log("Start");
	}

	public void Update()
	{
		Debug.Log("Update");
	}

执行结果:
unity
awake在start之前执行,update执行多遍。

相关标签: unity