mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-04 22:58:29 +08:00
Fixed bug in entity translation undo/redo.
This commit is contained in:
parent
762591bf24
commit
31c51ca83d
@ -20,6 +20,8 @@ export class TranslateEntityAction implements Action {
|
||||
}
|
||||
|
||||
undo(): void {
|
||||
quest_editor_store.set_selected_entity(this.entity);
|
||||
|
||||
if (this.world) {
|
||||
this.entity.set_world_position(this.old_position);
|
||||
} else {
|
||||
@ -29,11 +31,11 @@ export class TranslateEntityAction implements Action {
|
||||
if (this.old_section) {
|
||||
this.entity.set_section(this.old_section);
|
||||
}
|
||||
|
||||
quest_editor_store.set_selected_entity(this.entity);
|
||||
}
|
||||
|
||||
redo(): void {
|
||||
quest_editor_store.set_selected_entity(this.entity);
|
||||
|
||||
if (this.world) {
|
||||
this.entity.set_world_position(this.new_position);
|
||||
} else {
|
||||
@ -43,7 +45,5 @@ export class TranslateEntityAction implements Action {
|
||||
if (this.new_section) {
|
||||
this.entity.set_section(this.new_section);
|
||||
}
|
||||
|
||||
quest_editor_store.set_selected_entity(this.entity);
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user