// Update is called once per frame void Update() { delayTime += Time.deltaTime; if (delayTime > .5f) { Hand_CMD.HandLoop(); delayTime = 0.0f; } }
} //End Class // Use this for initialization void Start() { new Hand_CMD(); Hand_CMD.Init(); }