summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorDavid Snopek <dsnopek@gmail.com>2023-09-09 12:52:31 -0500
committerDavid Snopek <dsnopek@gmail.com>2023-09-12 13:21:16 -0500
commitaa6867e6c95e80e003be38037d7149e6648ed32d (patch)
tree8d17c3d87f6ea3b0c5a9f3426d691c073d5947ee /test
parent16ffb2795ae804cee84cc9939d542e4ffa9290db (diff)
downloadredot-cpp-aa6867e6c95e80e003be38037d7149e6648ed32d.tar.gz
Support `_validate_property()`
Diffstat (limited to 'test')
-rw-r--r--test/project/main.gd4
-rw-r--r--test/src/example.cpp8
-rw-r--r--test/src/example.h1
3 files changed, 13 insertions, 0 deletions
diff --git a/test/project/main.gd b/test/project/main.gd
index 473c15f..715b13e 100644
--- a/test/project/main.gd
+++ b/test/project/main.gd
@@ -23,6 +23,10 @@ func _ready():
# Property list.
example.property_from_list = Vector3(100, 200, 300)
assert_equal(example.property_from_list, Vector3(100, 200, 300))
+ var prop_list = example.get_property_list()
+ for prop_info in prop_list:
+ if prop_info['name'] == 'mouse_filter':
+ assert_equal(prop_info['usage'], PROPERTY_USAGE_NO_EDITOR)
# Call simple methods.
example.simple_func()
diff --git a/test/src/example.cpp b/test/src/example.cpp
index 8a761a4..dc471dd 100644
--- a/test/src/example.cpp
+++ b/test/src/example.cpp
@@ -117,6 +117,14 @@ bool Example::_property_get_revert(const StringName &p_name, Variant &r_property
}
};
+void Example::_validate_property(PropertyInfo &p_property) const {
+ String name = p_property.name;
+ // Test hiding the "mouse_filter" property from the editor.
+ if (name == "mouse_filter") {
+ p_property.usage = PROPERTY_USAGE_NO_EDITOR;
+ }
+}
+
void Example::_bind_methods() {
// Methods.
ClassDB::bind_method(D_METHOD("simple_func"), &Example::simple_func);
diff --git a/test/src/example.h b/test/src/example.h
index 6e00b7f..49d103e 100644
--- a/test/src/example.h
+++ b/test/src/example.h
@@ -65,6 +65,7 @@ protected:
void _get_property_list(List<PropertyInfo> *p_list) const;
bool _property_can_revert(const StringName &p_name) const;
bool _property_get_revert(const StringName &p_name, Variant &r_property) const;
+ void _validate_property(PropertyInfo &p_property) const;
String _to_string() const;