Ejemplo n.º 1
0
 public void Tick(int currentTick)
 {
     foreach (var match in _continueMatcherGroup.MatchingEntities)
     {
         if (match.Component1.ActivationState == match.Component2.ContinueOn)
         {
             _tutorialSystem.SetContinue();
         }
     }
 }
Ejemplo n.º 2
0
 protected override bool TryHandleCommand(ContinueCommand command, int currentTick, bool handlerEnabled)
 {
     _tutorialSystem.SetContinue();
     return(true);
 }