1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-23 20:02:32 +08:00

move tools (fix rollup)

This commit is contained in:
Kevin Levron 2021-04-03 21:43:40 +02:00
parent 9eb6bac736
commit a11a6cecf4
2 changed files with 3 additions and 2 deletions

View File

@ -1,5 +1,5 @@
import { watch } from 'vue';
import { bindProp } from '../tools/index.js';
import { bindProp } from '../tools';
export default {
name: 'Object3D',
@ -10,11 +10,12 @@ export default {
rotation: { type: Object, default: { x: 0, y: 0, z: 0 } },
scale: { type: Object, default: { x: 1, y: 1, z: 1 } },
lookAt: { type: Object, default: null },
autoRemove: { type: Boolean, default: true },
},
// can't use setup because it will not be used in sub components
// setup() {},
unmounted() {
this.removeFromParent();
if (this.autoRemove) this.removeFromParent();
},
methods: {
initObject3D(o3d) {