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

        story5.enabled = false;

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

        story5.enabled = true;
    }