Ejemplo n.º 1
0
 // Update is called once per frame
 void Update()
 {
     delayTime += Time.deltaTime;
     if (delayTime > .5f)
     {
         Hand_CMD.HandLoop();
         delayTime = 0.0f;
     }
 }
Ejemplo n.º 2
0
    }     //End Class

    // Use this for initialization
    void Start()
    {
        new Hand_CMD();
        Hand_CMD.Init();
    }