This commit is contained in:
syuilo 2019-08-18 16:55:09 +09:00
parent 6288de5813
commit bc11702f7d
2 changed files with 3 additions and 0 deletions

View File

@ -646,6 +646,7 @@ export class Room {
@autobind @autobind
public removeFurniture() { public removeFurniture() {
this.exitTransformMode();
const obj = this.selectedObject; const obj = this.selectedObject;
this.scene.remove(obj); this.scene.remove(obj);
this.objects = this.objects.filter(object => object.name !== obj.name); this.objects = this.objects.filter(object => object.name !== obj.name);

View File

@ -136,6 +136,8 @@ export default Vue.extend({
}, },
remove() { remove() {
this.isTranslateMode = false;
this.isRotateMode = false;
room.removeFurniture(); room.removeFurniture();
}, },