예제 #1
0
 private void UpdateNonParallelActiveChild()
 {
     if (ActiveNonParallelChild != null)
     {
         ActiveNonParallelChild.Update();
     }
 }
예제 #2
0
 private void EnterNonParallelActiveChild()
 {
     if (ActiveNonParallelChild != null)
     {
         ActiveNonParallelChild.SetActiveParent(this);
         ActiveNonParallelChild.Enter();
     }
 }
예제 #3
0
 private void ExitActiveNonParallelChild()
 {
     if (ActiveNonParallelChild != null)
     {
         ActiveNonParallelChild.Exit();
         ActiveNonParallelChild.SetActiveParent(null);
         ActiveNonParallelChild = null;
     }
 }