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

        story7.enabled = false;

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

        story7.enabled = true;
    }