forked from FoundKeyGang/FoundKey
Fix #5290
This commit is contained in:
parent
6288de5813
commit
bc11702f7d
2 changed files with 3 additions and 0 deletions
|
@ -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);
|
||||||
|
|
|
@ -136,6 +136,8 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
remove() {
|
remove() {
|
||||||
|
this.isTranslateMode = false;
|
||||||
|
this.isRotateMode = false;
|
||||||
room.removeFurniture();
|
room.removeFurniture();
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue