mirror of
https://github.com/troisjs/trois.git
synced 2024-11-24 04:12:02 +08:00
improve ShaderMaterial
This commit is contained in:
parent
f29435f1fa
commit
8dab3a6b74
@ -1,4 +1,4 @@
|
||||
import { ShaderMaterial } from 'three'
|
||||
import { ShaderMaterial } from 'three';
|
||||
import { watch } from 'vue';
|
||||
import { propsValues, defaultFragmentShader, defaultVertexShader } from '../tools.js';
|
||||
|
||||
@ -11,8 +11,13 @@ export default {
|
||||
},
|
||||
created() {
|
||||
this.createMaterial();
|
||||
this.mesh.setMaterial(this.material);
|
||||
if (this.addWatchers) this.addWatchers();
|
||||
['vertexShader', 'fragmentShader'].forEach(p => {
|
||||
watch(() => this[p], () => {
|
||||
// recreate material if we change either shader
|
||||
this.material.dispose();
|
||||
this.createMaterial();
|
||||
});
|
||||
});
|
||||
},
|
||||
unmounted() {
|
||||
this.material.dispose();
|
||||
@ -20,22 +25,7 @@ export default {
|
||||
methods: {
|
||||
createMaterial() {
|
||||
this.material = new ShaderMaterial(propsValues(this.$props));
|
||||
},
|
||||
addWatchers() {
|
||||
['uniforms', 'vertexShader', 'fragmentShader'].forEach(p => {
|
||||
watch(() => this[p], (value) => {
|
||||
this.material[p] = value;
|
||||
|
||||
if (p === 'vertexShader' || p === 'fragmentShader') {
|
||||
// recreate material if we change either shader
|
||||
this.material.dispose();
|
||||
this.createMaterial();
|
||||
}
|
||||
},
|
||||
// only watch deep on uniforms
|
||||
{ deep: p === 'uniforms' }
|
||||
);
|
||||
});
|
||||
this.mesh.setMaterial(this.material);
|
||||
},
|
||||
},
|
||||
render() {
|
||||
|
Loading…
Reference in New Issue
Block a user