summaryrefslogtreecommitdiffstats
path: root/scene/property_list_helper.cpp
diff options
context:
space:
mode:
authorkobewi <kobewi4e@gmail.com>2024-05-23 17:10:55 +0200
committerkobewi <kobewi4e@gmail.com>2024-05-25 10:51:37 +0200
commitb365a634038d4a60f31b22b58be5e4667a8663dc (patch)
treea833657fb3e6b4a9463c6d40c0ae59b2c9dc5601 /scene/property_list_helper.cpp
parentb7feebefabc2d48b0d4794cd31fc141f1caecc5c (diff)
downloadredot-engine-b365a634038d4a60f31b22b58be5e4667a8663dc.tar.gz
Automatically use property count in PropertyListHelper
Diffstat (limited to 'scene/property_list_helper.cpp')
-rw-r--r--scene/property_list_helper.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/scene/property_list_helper.cpp b/scene/property_list_helper.cpp
index 152ecaf89d..ce258ee8c3 100644
--- a/scene/property_list_helper.cpp
+++ b/scene/property_list_helper.cpp
@@ -122,8 +122,9 @@ bool PropertyListHelper::is_property_valid(const String &p_property, int *r_inde
return property_list.has(components[1]);
}
-void PropertyListHelper::get_property_list(List<PropertyInfo> *p_list, int p_count) const {
- for (int i = 0; i < p_count; i++) {
+void PropertyListHelper::get_property_list(List<PropertyInfo> *p_list) const {
+ const int property_count = _call_array_length_getter();
+ for (int i = 0; i < property_count; i++) {
for (const KeyValue<String, Property> &E : property_list) {
const Property &property = E.value;
@@ -177,7 +178,9 @@ bool PropertyListHelper::property_get_revert(const String &p_property, Variant &
PropertyListHelper::~PropertyListHelper() {
// No object = it's the main helper. Do a cleanup.
- if (!object) {
+ if (!object && is_initialized()) {
+ memdelete(array_length_getter);
+
for (const KeyValue<String, Property> &E : property_list) {
if (E.value.setter) {
memdelete(E.value.setter);