Ejemplo n.º 1
0
    // Update is called once per frame
    void Update()
    {
        tick -= Time.time;

        if (tick <= 0)
        {
            Root.currentBehaviour();
            tick = 10.0F;
        }
    }
Ejemplo n.º 2
0
 // Update is called once per frame
 void Update()
 {
     Root.currentBehaviour();
 }