using System.Collections; using System.Collections.Generic; using UnityEngine; public class script1 : MonoBehaviour { // Start is called before the first frame update程式一開始設定起始值的地方 void Start() { } // Update is called once per frame 程式進行中不斷被執行的部分(120 fps = 每秒執行120次) void Update() { } }