summaryrefslogtreecommitdiffstats
path: root/editor
diff options
context:
space:
mode:
authorajreckof <tbonhoure@ymail.com>2024-07-22 09:53:03 +0200
committerajreckof <tbonhoure@ymail.com>2024-07-22 09:53:03 +0200
commitf46e94d460b8a355acb266dbd20a5483dc967498 (patch)
tree0c8030166614d38dfdab55e27a04a840e7089b18 /editor
parente25f3c0d38d457b15a63720240736f564ce0501b (diff)
downloadredot-engine-f46e94d460b8a355acb266dbd20a5483dc967498.tar.gz
Fix Object encoded as id in dictionnaries to be represented as int in the inspector.
Diffstat (limited to 'editor')
-rw-r--r--editor/editor_properties_array_dict.cpp17
-rw-r--r--editor/editor_properties_array_dict.h1
2 files changed, 13 insertions, 5 deletions
diff --git a/editor/editor_properties_array_dict.cpp b/editor/editor_properties_array_dict.cpp
index 633f6abad9..c6fb323f1a 100644
--- a/editor/editor_properties_array_dict.cpp
+++ b/editor/editor_properties_array_dict.cpp
@@ -124,6 +124,16 @@ bool EditorPropertyDictionaryObject::_set(const StringName &p_name, const Varian
}
bool EditorPropertyDictionaryObject::_get(const StringName &p_name, Variant &r_ret) const {
+ if (!get_by_property_name(p_name, r_ret)) {
+ return false;
+ }
+ if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) {
+ r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id();
+ }
+ return true;
+}
+
+bool EditorPropertyDictionaryObject::get_by_property_name(const String &p_name, Variant &r_ret) const {
String name = p_name;
if (name == "new_item_key") {
@@ -140,10 +150,6 @@ bool EditorPropertyDictionaryObject::_get(const StringName &p_name, Variant &r_r
int index = name.get_slicec('/', 1).to_int();
Variant key = dict.get_key_at_index(index);
r_ret = dict[key];
- if (r_ret.get_type() == Variant::OBJECT && Object::cast_to<EncodedObjectAsID>(r_ret)) {
- r_ret = Object::cast_to<EncodedObjectAsID>(r_ret)->get_object_id();
- }
-
return true;
}
@@ -1050,7 +1056,8 @@ void EditorPropertyDictionary::update_property() {
if (!slot_visible) {
continue;
}
- Variant value = object->get(slot.prop_name);
+ Variant value;
+ object->get_by_property_name(slot.prop_name, value);
Variant::Type value_type = value.get_type();
// Check if the editor property needs to be updated.
diff --git a/editor/editor_properties_array_dict.h b/editor/editor_properties_array_dict.h
index 267cb1e86d..acde766754 100644
--- a/editor/editor_properties_array_dict.h
+++ b/editor/editor_properties_array_dict.h
@@ -77,6 +77,7 @@ public:
NEW_VALUE_INDEX,
};
+ bool get_by_property_name(const String &p_name, Variant &r_ret) const;
void set_dict(const Dictionary &p_dict);
Dictionary get_dict();