MOST Editor
MOSTRange (Property)
2) Example
// Define a MOSTRange property
[Tooltip("Base damage range in HP")]
public MOSTRange BaseDamage = new(5f, 12f);
// ____ Usecase ____
BaseDamage.GetRandomValue();
// return a random float value between 5 and 12
BaseDamage.Min
// return or set the minimum value of the BaseDamage
// The min/max values will be recalculated after any of BaseDamage values are edited
// In case the entered minimum value is bigger than the max value...
//Exampe
BaseDamage.Min = 15;
// now min will become 12 and max = 15..
BaseDamage.Max
// return or set the maximum value of the BaseDamage
// The min/max values will be recalculated after any of BaseDamage values are edited
// In case the entered maximum value is smaller than the max value...
//Exampe
BaseDamage.Max = 3;
// now min will become 3 and max = 5..3) What You’ll See in the Inspector

MinMaxSlider (Attribute)
2) Example
3) What You’ll See in the Inspector

MOSTRangeInt (Property)
2) Example
3) What You’ll See in the Inspector

MinMaxSliderInt (Attribute)
2) Example
3) What You’ll See in the Inspector

BigHeader (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

Line (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

ReadOnly (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

ReadOnlyIf (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

HideIfAll/Any (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

HelpBox (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

GUIColor (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

Required (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

InnerHint (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

Group (Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector
HideScriptField (ClassOnly Attribute)
1) Quick Definition
2) Example
3) What You’ll See in the Inspector

HideScriptField not added 
HideScriptField added Last updated