summaryrefslogtreecommitdiffstats
path: root/core/object/object.h
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2023-05-12 10:06:32 +0200
committerRémi Verschelde <rverschelde@gmail.com>2023-05-12 10:06:32 +0200
commit8f17f2623376a7409a4208d1c990d161227c3fe6 (patch)
tree453f7cf5ce83355b62ee3c3eac58d03274526845 /core/object/object.h
parent1c07717d3e69002000da742ca3c4583ec1e8686f (diff)
parenta34207b812034b3ed2334028e0334bd49511252f (diff)
downloadredot-engine-8f17f2623376a7409a4208d1c990d161227c3fe6.tar.gz
Merge pull request #76978 from raulsntos/property-hint-compat
Reorder `PropertyHint` enum to avoid breaking compat
Diffstat (limited to 'core/object/object.h')
-rw-r--r--core/object/object.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/object/object.h b/core/object/object.h
index c633208d7c..ae22851c15 100644
--- a/core/object/object.h
+++ b/core/object/object.h
@@ -61,7 +61,6 @@ enum PropertyHint {
PROPERTY_HINT_LAYERS_3D_RENDER,
PROPERTY_HINT_LAYERS_3D_PHYSICS,
PROPERTY_HINT_LAYERS_3D_NAVIGATION,
- PROPERTY_HINT_LAYERS_AVOIDANCE,
PROPERTY_HINT_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,"
PROPERTY_HINT_DIR, ///< a directory path must be passed
PROPERTY_HINT_GLOBAL_FILE, ///< a file path must be passed, hint_text (optionally) is a filter "*.png,*.wav,*.doc,"
@@ -86,6 +85,7 @@ enum PropertyHint {
PROPERTY_HINT_NODE_TYPE, ///< a node object type
PROPERTY_HINT_HIDE_QUATERNION_EDIT, /// Only Node3D::transform should hide the quaternion editor.
PROPERTY_HINT_PASSWORD,
+ PROPERTY_HINT_LAYERS_AVOIDANCE,
PROPERTY_HINT_MAX,
};