Ejemplo n.º 1
0
    // Use this for initialization
    void Start()
    {
        Story4 story4 = this.GetComponent <Story4>();

        story4.enabled = false;

        //2秒後に動けるようになるようにする
        Invoke("StoryReMove4", 2.0f);
    }
Ejemplo n.º 2
0
    void StoryReMove4()
    {
        Story4 story4 = this.GetComponent <Story4>();

        story4.enabled = true;
    }