Пример #1
0
 public void Update()
 {
     TickCoroutine.Tick();
 }
Пример #2
0
 public void Update()
 {
     TickCoroutine.Tick(); // Again another hook that calls that tick method - just to make sure it really gets called.
     orig_Update();
 }
Пример #3
0
 public void LateUpdate()
 {
     TickCoroutine.Tick();
     orig_LateUpdate();
 }