summaryrefslogtreecommitdiffstats
path: root/editor/plugins/gpu_particles_2d_editor_plugin.cpp
diff options
context:
space:
mode:
authorajreckof <66184050+ajreckof@users.noreply.github.com>2023-06-16 02:33:33 +0200
committerajreckof <66184050+ajreckof@users.noreply.github.com>2023-08-03 18:38:24 +0200
commit4da9927faf35660d004c5ff346ef401a14c69ae3 (patch)
tree518c5c0a52dae28736638d088973cc77175a083b /editor/plugins/gpu_particles_2d_editor_plugin.cpp
parentc0d8d91b15597209a1ca865c6ff4f84f06f7de86 (diff)
downloadredot-engine-4da9927faf35660d004c5ff346ef401a14c69ae3.tar.gz
Fix replace node deleting `Node` properties.
Update editor/scene_tree_dock.cpp Co-Authored-By: Hugo Locurcio <hugo.locurcio@hugo.pro>
Diffstat (limited to 'editor/plugins/gpu_particles_2d_editor_plugin.cpp')
-rw-r--r--editor/plugins/gpu_particles_2d_editor_plugin.cpp7
1 files changed, 2 insertions, 5 deletions
diff --git a/editor/plugins/gpu_particles_2d_editor_plugin.cpp b/editor/plugins/gpu_particles_2d_editor_plugin.cpp
index 8631ee05c8..4710f2bccb 100644
--- a/editor/plugins/gpu_particles_2d_editor_plugin.cpp
+++ b/editor/plugins/gpu_particles_2d_editor_plugin.cpp
@@ -115,11 +115,8 @@ void GPUParticles2DEditorPlugin::_menu_callback(int p_idx) {
EditorUndoRedoManager *ur = EditorUndoRedoManager::get_singleton();
ur->create_action(TTR("Convert to CPUParticles2D"));
- ur->add_do_method(SceneTreeDock::get_singleton(), "replace_node", particles, cpu_particles, true, false);
- ur->add_do_reference(cpu_particles);
- ur->add_undo_method(SceneTreeDock::get_singleton(), "replace_node", cpu_particles, particles, false, false);
- ur->add_undo_reference(particles);
- ur->commit_action();
+ SceneTreeDock::get_singleton()->replace_node(particles, cpu_particles);
+ ur->commit_action(false);
} break;
case MENU_RESTART: {