mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
InstancedMesh test
This commit is contained in:
parent
4052ea7c5f
commit
7b147453af
@ -1,5 +1,5 @@
|
|||||||
<template>
|
<template>
|
||||||
<Renderer ref="renderer" :orbit-ctrl="{ enableDamping: true, dampingFactor: 0.05 }">
|
<Renderer ref="renderer"> <!-- :orbit-ctrl="{ enableDamping: true, dampingFactor: 0.05 }"> -->
|
||||||
<PerspectiveCamera :position="{ z: 100 }"></PerspectiveCamera>
|
<PerspectiveCamera :position="{ z: 100 }"></PerspectiveCamera>
|
||||||
|
|
||||||
<PhongMaterial id="material1" color="#ff0000"></PhongMaterial>
|
<PhongMaterial id="material1" color="#ff0000"></PhongMaterial>
|
||||||
@ -7,18 +7,24 @@
|
|||||||
|
|
||||||
<Scene id="scene1">
|
<Scene id="scene1">
|
||||||
<PointLight :position="{ x: 0, y: 50, z: 50 }"></PointLight>
|
<PointLight :position="{ x: 0, y: 50, z: 50 }"></PointLight>
|
||||||
<Box ref="box" :size="10" :rotation="{ y: Math.PI / 4 }" material="material1"></Box>
|
<!-- <Box ref="box" :size="10" :rotation="{ y: Math.PI / 4 }" material="material1"></Box>
|
||||||
<Sphere ref="sphere" :radius="10" :position="{ x: 50 }" material="material2"></Sphere>
|
<Sphere ref="sphere" :radius="10" :position="{ x: 50 }" material="material2"></Sphere> -->
|
||||||
|
<InstancedMesh ref="iMesh" material="material2" :count="1000">
|
||||||
|
<BoxGeometry :size="2"></BoxGeometry>
|
||||||
|
</InstancedMesh>
|
||||||
</Scene>
|
</Scene>
|
||||||
</Renderer>
|
</Renderer>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script>
|
<script>
|
||||||
|
import { Object3D, MathUtils } from 'three';
|
||||||
|
|
||||||
import {
|
import {
|
||||||
Renderer, PerspectiveCamera, Scene,
|
Renderer, PerspectiveCamera, Scene,
|
||||||
PointLight,
|
PointLight,
|
||||||
Box, Sphere,
|
Box, Sphere,
|
||||||
LambertMaterial, PhongMaterial,
|
LambertMaterial, PhongMaterial,
|
||||||
|
InstancedMesh, BoxGeometry,
|
||||||
} from '../index.js';
|
} from '../index.js';
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
@ -27,13 +33,26 @@ export default {
|
|||||||
PointLight,
|
PointLight,
|
||||||
Box, Sphere,
|
Box, Sphere,
|
||||||
LambertMaterial, PhongMaterial,
|
LambertMaterial, PhongMaterial,
|
||||||
|
InstancedMesh, BoxGeometry,
|
||||||
},
|
},
|
||||||
mounted() {
|
mounted() {
|
||||||
const renderer = this.$refs.renderer;
|
const renderer = this.$refs.renderer;
|
||||||
const box = this.$refs.box.mesh;
|
// const box = this.$refs.box.mesh;
|
||||||
|
|
||||||
|
const { randFloat: rnd, randFloatSpread: rndFS } = MathUtils;
|
||||||
|
const iMesh = this.$refs.iMesh.mesh;
|
||||||
|
const dummy = new Object3D();
|
||||||
|
for (let i = 0; i < 1000; i++) {
|
||||||
|
dummy.position.set(rndFS(100), rndFS(100), rndFS(100));
|
||||||
|
dummy.rotation.set(rndFS(1), rndFS(1), rndFS(1));
|
||||||
|
// dummy.scale.set(rnd(0.1, 1), rnd(0.1, 1), rnd(0.1, 1));
|
||||||
|
dummy.updateMatrix();
|
||||||
|
iMesh.setMatrixAt(i, dummy.matrix);
|
||||||
|
}
|
||||||
|
iMesh.instanceMatrix.needsUpdate = true;
|
||||||
|
|
||||||
renderer.onBeforeRender(() => {
|
renderer.onBeforeRender(() => {
|
||||||
box.rotation.x += 0.01;
|
// box.rotation.x += 0.01;
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
37
src/geometries/index.js
Normal file
37
src/geometries/index.js
Normal file
@ -0,0 +1,37 @@
|
|||||||
|
import { BoxBufferGeometry } from 'three';
|
||||||
|
|
||||||
|
export const BoxGeometry = {
|
||||||
|
inject: ['parent'],
|
||||||
|
props: {
|
||||||
|
size: {
|
||||||
|
type: Number,
|
||||||
|
},
|
||||||
|
width: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
height: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
depth: {
|
||||||
|
type: Number,
|
||||||
|
default: 1,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
if (!this.parent) {
|
||||||
|
console.error('Missing parent Mesh');
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (this.size) {
|
||||||
|
this.parent.geometry = new BoxBufferGeometry(this.size, this.size, this.size);
|
||||||
|
} else {
|
||||||
|
this.parent.geometry = new BoxBufferGeometry(this.width, this.height, this.depth);
|
||||||
|
}
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return [];
|
||||||
|
},
|
||||||
|
};
|
@ -1,4 +1,5 @@
|
|||||||
export * from './core/index.js';
|
export * from './core/index.js';
|
||||||
|
export * from './geometries/index.js';
|
||||||
export * from './lights/index.js';
|
export * from './lights/index.js';
|
||||||
export * from './materials/index.js';
|
export * from './materials/index.js';
|
||||||
export * from './meshes/index.js';
|
export * from './meshes/index.js';
|
||||||
|
32
src/meshes/InstancedMesh.js
Normal file
32
src/meshes/InstancedMesh.js
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
import { InstancedMesh } from 'three';
|
||||||
|
|
||||||
|
export default {
|
||||||
|
inject: ['three', 'scene'],
|
||||||
|
props: {
|
||||||
|
material: String,
|
||||||
|
count: Number,
|
||||||
|
},
|
||||||
|
setup() {
|
||||||
|
return {
|
||||||
|
conf: {},
|
||||||
|
};
|
||||||
|
},
|
||||||
|
provide() {
|
||||||
|
return {
|
||||||
|
parent: this.conf,
|
||||||
|
};
|
||||||
|
},
|
||||||
|
beforeMount() {
|
||||||
|
console.log(this.conf);
|
||||||
|
if (!this.$slots.default) {
|
||||||
|
console.error('Missing Geometry');
|
||||||
|
}
|
||||||
|
},
|
||||||
|
mounted() {
|
||||||
|
this.mesh = new InstancedMesh(this.conf.geometry, this.three.materials[this.material], this.count);
|
||||||
|
this.scene.add(this.mesh);
|
||||||
|
},
|
||||||
|
render() {
|
||||||
|
return this.$slots.default();
|
||||||
|
},
|
||||||
|
};
|
@ -1,2 +1,4 @@
|
|||||||
export { default as Box } from './Box.js';
|
export { default as Box } from './Box.js';
|
||||||
export { default as Sphere } from './Sphere.js';
|
export { default as Sphere } from './Sphere.js';
|
||||||
|
|
||||||
|
export { default as InstancedMesh } from './InstancedMesh.js';
|
||||||
|
Loading…
Reference in New Issue
Block a user