예제 #1
0
 public virtual void FixedUpdate()
 {
     // Don't spam the log every frame if initialization fails and leaves it as null
     if (_tickableManager != null)
     {
         _tickableManager.FixedUpdate();
     }
 }
예제 #2
0
 public virtual void FixedUpdate()
 {
     // Don't spam the log every frame if initialization fails and leaves it as null
     if (_tickableManager != null)
     {
         if (decoratableMonoKernel != null)
         {
             decoratableMonoKernel.FixedUpdate();
         }
         else
         {
             _tickableManager.FixedUpdate();
         }
     }
 }
예제 #3
0
파일: Kernel.cs 프로젝트: xxxhycl2010/karma
 public virtual void FixedTick()
 {
     _tickableManager.FixedUpdate();
 }
 public void FixedUpdate()
 {
     _tickableManager.FixedUpdate();
 }