Fix undo for Particles 3D gizmo
This commit is contained in:
parent
17d92c2b09
commit
43a3db4c00
1 changed files with 2 additions and 2 deletions
|
@ -2414,8 +2414,8 @@ void ParticlesGizmoPlugin::commit_handle(EditorSpatialGizmo *p_gizmo, int p_idx,
|
|||
|
||||
UndoRedo *ur = SpatialEditor::get_singleton()->get_undo_redo();
|
||||
ur->create_action(TTR("Change Particles AABB"));
|
||||
ur->add_do_method(particles, "set_custom_aabb", particles->get_visibility_aabb());
|
||||
ur->add_undo_method(particles, "set_custom_aabb", p_restore);
|
||||
ur->add_do_method(particles, "set_visibility_aabb", particles->get_visibility_aabb());
|
||||
ur->add_undo_method(particles, "set_visibility_aabb", p_restore);
|
||||
ur->commit_action();
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue