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

upgrade three@138 refactor RGBFormat -> RGBAFormat

This commit is contained in:
semleti 2022-03-23 18:05:10 +00:00
parent ba2665e741
commit 80ef731a16
5 changed files with 10 additions and 10 deletions

View File

@ -9,7 +9,7 @@
},
"devDependencies": {
"@rollup/plugin-replace": "^3.0.0",
"@types/three": "^0.136.0",
"@types/three": "^0.138.0",
"@typescript-eslint/eslint-plugin": "^5.2.0",
"@typescript-eslint/parser": "^5.2.0",
"@vitejs/plugin-vue": "^2.2.0",
@ -27,7 +27,7 @@
"rollup-plugin-dts": "^4.0.0",
"rollup-plugin-esbuild": "^4.1.0",
"stats.js": "0.17.0",
"three": "^0.136.0",
"three": "^0.138.3",
"typescript": "^4.1.5",
"vite": "^2.6.13",
"vue": "^3.2.20",

View File

@ -5,7 +5,7 @@ import {
FrontSide,
LinearMipmapLinearFilter,
Mesh as TMesh,
RGBFormat,
RGBAFormat,
WebGLCubeRenderTarget,
} from 'three'
@ -32,7 +32,7 @@ export default defineComponent({
},
methods: {
initGem() {
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBAFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT)
bindProp(this, 'position', this.cubeCamera)
this.addToParent(this.cubeCamera)

View File

@ -2,7 +2,7 @@ import { defineComponent } from 'vue'
import {
CubeCamera,
LinearMipmapLinearFilter,
RGBFormat,
RGBAFormat,
WebGLCubeRenderTarget,
} from 'three'
@ -27,7 +27,7 @@ export default defineComponent({
},
methods: {
initMirrorMesh() {
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { format: RGBAFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT)
this.addToParent(this.cubeCamera)

View File

@ -3,7 +3,7 @@ import {
CubeCamera,
CubeRefractionMapping,
LinearMipmapLinearFilter,
RGBFormat,
RGBAFormat,
WebGLCubeRenderTarget,
} from 'three'
@ -29,7 +29,7 @@ export default defineComponent({
},
methods: {
initMirrorMesh() {
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { mapping: CubeRefractionMapping, format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
const cubeRT = new WebGLCubeRenderTarget(this.cubeRTSize, { mapping: CubeRefractionMapping, format: RGBAFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
this.cubeCamera = new CubeCamera(this.cubeCameraNear, this.cubeCameraFar, cubeRT)
bindProp(this, 'position', this.cubeCamera)
this.addToParent(this.cubeCamera)

View File

@ -1,5 +1,5 @@
import { defineComponent, inject, onUnmounted, PropType } from 'vue'
import { CubeCamera, LinearMipmapLinearFilter, Mesh, RGBFormat, WebGLCubeRenderTarget } from 'three'
import { CubeCamera, LinearMipmapLinearFilter, Mesh, RGBAFormat, WebGLCubeRenderTarget } from 'three'
import Object3D from './Object3D'
import { RendererInjectionKey } from './Renderer'
@ -26,7 +26,7 @@ export default defineComponent({
}
const renderer = rendererC.renderer, scene = rendererC.scene
const cubeRT = new WebGLCubeRenderTarget(props.cubeRTSize, { format: RGBFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
const cubeRT = new WebGLCubeRenderTarget(props.cubeRTSize, { format: RGBAFormat, generateMipmaps: true, minFilter: LinearMipmapLinearFilter })
const cubeCamera = new CubeCamera(props.cubeCameraNear, props.cubeCameraFar, cubeRT)
const updateRT = () => {
props.hideMeshes.forEach(m => { m.visible = false })