1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-28 16:07:14 +00:00

Merge pull request #75778 from KoBeWi/_vp

Expose `_validate_property()` for scripting
This commit is contained in:
Rémi Verschelde
2023-08-29 12:41:27 +02:00
9 changed files with 111 additions and 2 deletions

View File

@@ -682,6 +682,9 @@ public:
}
return Variant::NIL;
}
virtual void validate_property(PropertyInfo &p_property) const override {
// TODO
}
virtual bool property_can_revert(const StringName &p_name) const override {
if (native_info->property_can_revert_func) {