kOS.Command.Evaluate C# (CSharp) Method

Evaluate() public method

public Evaluate ( ) : void
return void
        public virtual void Evaluate()
        {
        }

Usage Example

Example #1
0
 public override void Update(float time)
 {
     if (triggered)
     {
         targetCommand.Update(time);
         if (targetCommand.State == ExecutionState.DONE)
         {
             ParentContext.Unlock(this);
         }
     }
     else if (expression.IsTrue())
     {
         triggered = true;
         targetCommand.Evaluate();
     }
 }
All Usage Examples Of kOS.Command::Evaluate