DoubleSetting
A setting with a double as value
new DoubleSetting(String name, String description, double default, double min, double max)
new DoubleSetting(String name, String description, double default, double min, double max)
You are not stupid the maximum has to be higher then the minimum.
getValue(): double
getValue(): double
Returns the current value of the setting.
setValue(double value): void
setValue(double value): void
Sets the value of the setting.
getName(): String
getName(): String
Gives the name of the setting.
getDescription(): String
getDescription(): String
Returns the description of the setting.
getMin(): double
getMin(): double
Returns the minimum value this setting is allowed to have.
getMax(): double
getMax(): double
Returns the maximum value this setting is allowed to have.
setHidden(boolean hidden): void
setHidden(boolean hidden): void
Allows you to hide a setting from the menu.
setHidden()
only works on settings that have been initiated by scripts in the first place!
isHidden(boolean hidden): void
isHidden(boolean hidden): void
Allows you to hide a setting from the menu.
Last updated