Beispiel #1
0
 public void notifyEndActionsList()
 {
     if (condition.checkCondition())
     {
         this.endAction();
     }
 }
Beispiel #2
0
 override public void afterOnFixedUpdate()
 {
     if (this.isStarted() && !this.isExecuted())
     {
         if (condition.checkCondition())
         {
             this.endAction();
         }
     }
 }
 override public void activateAction()
 {
     base.activateAction();
     if (condition.checkCondition())
     {
         this.actionsThen.start();
     }
     else
     {
         this.actionsElse.start();
     }
 }