1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-04 12:00:25 +00:00

Merge pull request #109884 from aaronfranke/range-min-max

Remove nearly-unused "default" range hint min/max
This commit is contained in:
Thaddeus Crews
2025-08-24 11:04:33 -05:00

View File

@@ -3591,8 +3591,8 @@ bool EditorInspectorDefaultPlugin::parse_property(Object *p_object, const Varian
struct EditorPropertyRangeHint {
bool or_greater = true;
bool or_less = true;
double min = -99999.0;
double max = 99999.0;
double min = 0.0;
double max = 0.0;
double step = 1.0;
String suffix;
bool exp_range = false;