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