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

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

代码示例1
// The Update() function runs once per frame
// It's used to run a code every frame of the game

void Update() {
    //Any code you put here will run every frame of the game
}