mirror of
https://github.com/DaanVandenBosch/phantasmal-world.git
synced 2025-04-05 15:28: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 {
|
undo(): void {
|
||||||
|
quest_editor_store.set_selected_entity(this.entity);
|
||||||
|
|
||||||
if (this.world) {
|
if (this.world) {
|
||||||
this.entity.set_world_position(this.old_position);
|
this.entity.set_world_position(this.old_position);
|
||||||
} else {
|
} else {
|
||||||
@ -29,11 +31,11 @@ export class TranslateEntityAction implements Action {
|
|||||||
if (this.old_section) {
|
if (this.old_section) {
|
||||||
this.entity.set_section(this.old_section);
|
this.entity.set_section(this.old_section);
|
||||||
}
|
}
|
||||||
|
|
||||||
quest_editor_store.set_selected_entity(this.entity);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
redo(): void {
|
redo(): void {
|
||||||
|
quest_editor_store.set_selected_entity(this.entity);
|
||||||
|
|
||||||
if (this.world) {
|
if (this.world) {
|
||||||
this.entity.set_world_position(this.new_position);
|
this.entity.set_world_position(this.new_position);
|
||||||
} else {
|
} else {
|
||||||
@ -43,7 +45,5 @@ export class TranslateEntityAction implements Action {
|
|||||||
if (this.new_section) {
|
if (this.new_section) {
|
||||||
this.entity.set_section(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