1
0
Fork 0

Add New Property Hint to List From Dir

This commit is contained in:
mechPenSketch 2025-02-24 20:57:17 +08:00
parent 0e3dbba6a5
commit 461e62033b
1 changed files with 1 additions and 0 deletions

View File

@ -90,6 +90,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_RES_FROM_DIR, /// hint_text is a directory path. The property lists all relevant resource files in hint_text.
PROPERTY_HINT_MAX,
};