public override void ApplyChange(GenericVariable <float> amount)
 {
     SetValue(Value + amount.Value);
 }
 public override void ApplyChange(GenericVariable <string> amount)
 {
     SetValue(amount.Value);
 }
 public void SetValue(GenericVariable <T> value)
 {
     SetValue(value.Value);
 }
 public virtual void ApplyChange(GenericVariable <T> amount)
 {
     SetValue(amount);
 }
Beispiel #5
0
 public override void ApplyChange(GenericVariable <Quaternion> amount)
 {
     SetValue(amount.Value);
 }