public override void OnReset()
 {
     this.operation         = IntOperator.Operation.Add;
     this.integer1.Value    = 0;
     this.integer2.Value    = 0;
     this.storeResult.Value = 0;
 }
Beispiel #2
0
 public virtual void OnReset()
 {
     this.operation = IntOperator.Operation.Add;
     this.integer1.set_Value(0);
     this.integer2.set_Value(0);
     this.storeResult.set_Value(0);
 }
Beispiel #3
0
 public override void Reset()
 {
     this.integer1    = null;
     this.integer2    = null;
     this.operation   = IntOperator.Operation.Add;
     this.storeResult = null;
     this.everyFrame  = false;
 }
Beispiel #4
0
 public override void Reset()
 {
     this.integer1 = null;
     this.integer2 = null;
     this.operation = IntOperator.Operation.Add;
     this.storeResult = null;
     this.everyFrame = false;
 }