Merge pull request #107591 from timothyqiu/group-enable-default

Make `PROPERTY_HINT_GROUP_ENABLE` hide properties by default
This commit is contained in:
Thaddeus Crews
2025-06-24 18:34:28 -05:00
19 changed files with 55 additions and 55 deletions

View File

@ -93,7 +93,7 @@ enum PropertyHint {
PROPERTY_HINT_TOOL_BUTTON,
PROPERTY_HINT_ONESHOT, ///< the property will be changed by self after setting, such as AudioStreamPlayer.playing, Particles.emitting.
PROPERTY_HINT_NO_NODEPATH, /// < this property will not contain a NodePath, regardless of type (Array, Dictionary, List, etc.). Needed for SceneTreeDock.
PROPERTY_HINT_GROUP_ENABLE, ///< used to make the property's group checkable. Only use for boolean types. Optional "feature" hint string force hides anything inside when unchecked.
PROPERTY_HINT_GROUP_ENABLE, ///< used to make the property's group checkable. Only use for boolean types.
PROPERTY_HINT_INPUT_NAME,
PROPERTY_HINT_FILE_PATH,
PROPERTY_HINT_MAX,