1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-26 15:46:23 +00:00

Merge pull request #61878 from bruvzg/backport_locale_select

[3.x] Backport locale selection improvements.
This commit is contained in:
Rémi Verschelde
2022-08-05 23:45:17 +02:00
committed by GitHub
19 changed files with 2430 additions and 1214 deletions

View File

@@ -86,6 +86,11 @@ typedef enum {
GODOT_PROPERTY_HINT_PROPERTY_OF_BASE_TYPE, ///< a property of a base type
GODOT_PROPERTY_HINT_PROPERTY_OF_INSTANCE, ///< a property of an instance
GODOT_PROPERTY_HINT_PROPERTY_OF_SCRIPT, ///< a property of a script & base
GODOT_PROPERTY_HINT_OBJECT_TOO_BIG, ///< object is too big to send
GODOT_PROPERTY_HINT_NODE_PATH_VALID_TYPES,
GODOT_PROPERTY_HINT_SAVE_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,". This opens a save dialog
GODOT_PROPERTY_HINT_ENUM_SUGGESTION, ///< hint_text= "val1,val2,val3,etc"
GODOT_PROPERTY_HINT_LOCALE_ID,
GODOT_PROPERTY_HINT_MAX,
} godot_property_hint;