top of page

何秒後に実行される

    void Start() {
        //DelayMethodを3.5秒後に呼び出す
        Invoke("Test", 2.0f);
    }

    void Test(){
        Debug.Log("Hello");
    }

 

bottom of page