From 094e8db97c3bb0f88aca32228a49f72cca745c9a Mon Sep 17 00:00:00 2001 From: Aaron Franke Date: Mon, 3 Oct 2022 11:59:33 -0500 Subject: Fix hide_slider vs no_slider inconsistency in editor property code --- core/object/object.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'core/object') diff --git a/core/object/object.h b/core/object/object.h index 8ade5a204a..1f45c59a4c 100644 --- a/core/object/object.h +++ b/core/object/object.h @@ -50,7 +50,7 @@ class TypedArray; enum PropertyHint { PROPERTY_HINT_NONE, ///< no hint provided. - PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_less][,no_slider][,radians][,degrees][,exp][,suffix:] range. + PROPERTY_HINT_RANGE, ///< hint_text = "min,max[,step][,or_greater][,or_less][,hide_slider][,radians][,degrees][,exp][,suffix:] range. PROPERTY_HINT_ENUM, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_ENUM_SUGGESTION, ///< hint_text= "val1,val2,val3,etc" PROPERTY_HINT_EXP_EASING, /// exponential easing function (Math::ease) use "attenuation" hint string to revert (flip h), "positive_only" to exclude in-out and out-in. (ie: "attenuation,positive_only") -- cgit v1.2.3