1
0
mirror of https://github.com/troisjs/trois.git synced 2024-11-24 04:12:02 +08:00
This commit is contained in:
Kevin Levron 2021-03-06 23:24:07 +01:00
parent 2b441f7cd7
commit c8a3ed739d
3 changed files with 0 additions and 6 deletions

View File

@ -30,8 +30,6 @@ export default {
},
methods: {
initGem() {
this.initMesh();
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter });
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT);
bindProp(this, 'position', this.cubeCamera.position);

View File

@ -25,8 +25,6 @@ export default {
},
methods: {
initMirrorMesh() {
this.initMesh();
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter });
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT);
this.$parent.add(this.cubeCamera);

View File

@ -28,8 +28,6 @@ export default {
},
methods: {
initMirrorMesh() {
this.initMesh();
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { mapping: CubeRefractionMapping, format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter });
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT);
bindProp(this, 'position', this.cubeCamera.position);