Exemplo n.º 1
0
 public void SetSetting(string name, int?newValue = null, int?newMin = null, int?newMax = null, float?newMultiplier = null)
 {
     Settings.SetWorldValue(name, newValue, newMin, newMax, newMultiplier);
     MyWorldGrid.SetValue(name, Settings[name].GetValue());
 }
Exemplo n.º 2
0
 public void ClearAll()
 {
     MyWorldGrid.ClearAll();
 }
Exemplo n.º 3
0
 public void ChangeSetting(string name, int change)
 {
     Settings.ChangeValueBy(name, change);
     MyWorldGrid.SetValue(name, Settings[name].GetValue());
 }