public void Update() { TickCoroutine.Tick(); }
public void Update() { TickCoroutine.Tick(); // Again another hook that calls that tick method - just to make sure it really gets called. orig_Update(); }
public void LateUpdate() { TickCoroutine.Tick(); orig_LateUpdate(); }