mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
wip
This commit is contained in:
parent
3ecaaad06a
commit
440a854417
@ -5,7 +5,7 @@ import Mesh from './Mesh.js';
|
||||
export default {
|
||||
extends: Mesh,
|
||||
props: {
|
||||
size: { type: Number },
|
||||
size: Number,
|
||||
width: { type: Number, default: 1 },
|
||||
height: { type: Number, default: 1 },
|
||||
depth: { type: Number, default: 1 },
|
||||
|
@ -22,7 +22,18 @@ export default {
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
this.mesh = new InstancedMesh(this.geometry, this.three.materials[this.materialId], this.count);
|
||||
this.initMesh();
|
||||
},
|
||||
unmounted() {
|
||||
this.scene.remove(this.mesh);
|
||||
},
|
||||
methods: {
|
||||
initMesh() {
|
||||
if (!this.material && this.materialId) {
|
||||
this.material = this.three.materials[this.materialId];
|
||||
}
|
||||
|
||||
this.mesh = new InstancedMesh(this.geometry, this.material, this.count);
|
||||
|
||||
useBindProp(this, 'position', this.mesh.position);
|
||||
useBindProp(this, 'rotation', this.mesh.rotation);
|
||||
@ -39,10 +50,6 @@ export default {
|
||||
|
||||
this.scene.add(this.mesh);
|
||||
},
|
||||
unmounted() {
|
||||
this.scene.remove(this.mesh);
|
||||
},
|
||||
methods: {
|
||||
setGeometry(geometry) {
|
||||
this.geometry = geometry;
|
||||
if (this.mesh) this.mesh.geometry = geometry;
|
||||
|
Loading…
Reference in New Issue
Block a user