Beispiel #1
0
 public Liftb(Signal <Boolean> value, SigUp sigUp, Boolean initValue = false)
 {
     this.value   = value;
     this.curVal  = initValue;
     this.sigUp   = sigUp;
     this.updTime = 0f;
 }
Beispiel #2
0
 public Liftf(Signal <float> value, SigUp sigUp, float initValue = 0f)
 {
     this.value   = value;
     this.curVal  = initValue;
     this.sigUp   = sigUp;
     this.updTime = 0;
 }