public void ApplyChange(FloatVariableScriptableObject amount)
 {
     Value += amount.Value;
 }
 public void SetValue(FloatVariableScriptableObject newValue)
 {
     Value = newValue.Value;
 }