diff options
author | kobewi <kobewi4e@gmail.com> | 2024-02-14 02:11:45 +0100 |
---|---|---|
committer | kobewi <kobewi4e@gmail.com> | 2024-04-11 18:13:29 +0200 |
commit | e95e954c68a9a694ad43f622e5424d9e3ec87819 (patch) | |
tree | ce4ad901a4b049da05ada830063e4e3d84417de0 /scene/property_list_helper.h | |
parent | b2f425fe680d1ed5d5b5fa9ae289ae93fd294607 (diff) | |
download | redot-engine-e95e954c68a9a694ad43f622e5424d9e3ec87819.tar.gz |
Add PropertyListHelper in all simple cases
Diffstat (limited to 'scene/property_list_helper.h')
-rw-r--r-- | scene/property_list_helper.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/scene/property_list_helper.h b/scene/property_list_helper.h index 6c1ad21a05..eac6b03d47 100644 --- a/scene/property_list_helper.h +++ b/scene/property_list_helper.h @@ -48,10 +48,12 @@ class PropertyListHelper { const Property *_get_property(const String &p_property, int *r_index) const; void _call_setter(const MethodBind *p_setter, int p_index, const Variant &p_value) const; - Variant _call_getter(const MethodBind *p_getter, int p_index) const; + Variant _call_getter(const Property *p_property, int p_index) const; public: void set_prefix(const String &p_prefix); + // Register property without setter/getter. Only use when you don't need PropertyListHelper for _set/_get logic. + void register_property(const PropertyInfo &p_info, const Variant &p_default); template <typename S, typename G> void register_property(const PropertyInfo &p_info, const Variant &p_default, S p_setter, G p_getter) { @@ -64,7 +66,9 @@ public: property_list[p_info.name] = property; } + bool is_initialized() const; void setup_for_instance(const PropertyListHelper &p_base, Object *p_object); + bool is_property_valid(const String &p_property, int *r_index = nullptr) const; void get_property_list(List<PropertyInfo> *p_list, int p_count) const; bool property_get_value(const String &p_property, Variant &r_ret) const; |