summaryrefslogtreecommitdiffstats
path: root/editor/editor_data.cpp
diff options
context:
space:
mode:
authorHilderin <81109165+Hilderin@users.noreply.github.com>2024-08-02 16:50:22 -0400
committerHilderin <81109165+Hilderin@users.noreply.github.com>2024-08-02 16:50:22 -0400
commit769424388e8dae198b17afd807a0ebd3b33946ce (patch)
tree136377b2398fa18164838f9ee612f33936d3b067 /editor/editor_data.cpp
parent3978628c6cc1227250fc6ed45c8d854d24c30c30 (diff)
downloadredot-engine-769424388e8dae198b17afd807a0ebd3b33946ce.tar.gz
Fix crash on reimport scene with animations
Diffstat (limited to 'editor/editor_data.cpp')
-rw-r--r--editor/editor_data.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/editor/editor_data.cpp b/editor/editor_data.cpp
index 11fea8b728..80c4c49c87 100644
--- a/editor/editor_data.cpp
+++ b/editor/editor_data.cpp
@@ -141,6 +141,16 @@ void EditorSelectionHistory::add_object(ObjectID p_object, const String &p_prope
current_elem_idx++;
}
+void EditorSelectionHistory::replace_object(ObjectID p_old_object, ObjectID p_new_object) {
+ for (HistoryElement &element : history) {
+ for (int index = 0; index < element.path.size(); index++) {
+ if (element.path[index].object == p_old_object) {
+ element.path.write[index].object = p_new_object;
+ }
+ }
+ }
+}
+
int EditorSelectionHistory::get_history_len() {
return history.size();
}