示例#1
0
    // Use this for initialization
    void Start()
    {
        Story6 story6 = this.GetComponent <Story6>();

        story6.enabled = false;

        //2秒後に動けるようになるようにする
        Invoke("StoryReMove6", 2.0f);
    }
示例#2
0
    void StoryReMove6()
    {
        Story6 story6 = this.GetComponent <Story6>();

        story6.enabled = true;
    }