Exemplo n.º 1
0
 public virtual void LateUpdate()
 {
     // Don't spam the log every frame if initialization fails and leaves it as null
     if (_tickableManager != null)
     {
         _tickableManager.LateUpdate();
     }
 }
Exemplo n.º 2
0
 public virtual void LateUpdate()
 {
     // Don't spam the log every frame if initialization fails and leaves it as null
     if (_tickableManager != null)
     {
         if (decoratableMonoKernel != null)
         {
             decoratableMonoKernel.LateUpdate();
         }
         else
         {
             _tickableManager.LateUpdate();
         }
     }
 }
Exemplo n.º 3
0
 public virtual void LateTick()
 {
     _tickableManager.LateUpdate();
 }
 public void LateUpdate()
 {
     _tickableManager.LateUpdate();
 }