Example #1
0
 public TweakableInfo(string name, ICustomTweakerAttribute[] customAttributes = null, string description = "")
     : base(name, 0u, customAttributes, description)
 {
     Range        = null;
     StepSize     = null;
     ToggleValues = null;
 }
Example #2
0
 public TweakableInfo(string name, TweakableRange <T> range, TweakableStepSize <T> stepSize, TweakableNamedToggleValue <T>[] toggleValues, uint instanceId = 0u, ICustomTweakerAttribute[] customAttributes = null, string description = "")
     : base(name, instanceId, customAttributes, description)
 {
     Range        = range;
     StepSize     = stepSize;
     ToggleValues = toggleValues;
 }