📜  start() 做了什么统一 - C# 代码示例

📅  最后修改于: 2022-03-11 14:48:41.892000             🧑  作者: Mango

代码示例1
// The Start() function is called before the first frame
// You can use it to run any code you want right when the game starts
    
void Start()
{
    // Put any code you want here
    // Any code in here will run before the first frame of the game is called
}