threejs修改场景天空盒背景图

先来看下效果图~

原理

原理其实很简单,我就是设置了scene的background。一句话解释完了。下面看下代码:

let cubeTextureLoader = new THREE.CubeTextureLoader();
cubeTextureLoader.setPath( '/skybox/' );

let cubeTexture = cubeTextureLoader.load( [
    "px.png", "nx.png",
    "py.png", "ny.png",
    "pz.png", "nz.png"
]);
//需要把色彩空间编码改一下,原因我上一篇说过的
cubeTexture.encoding = THREE.sRGBEncoding

scene.background = cubeTexture;

切换背景注意事项

切换背景其实很容易,两个步骤:

  1. 将原本的背景注销掉,主要是避免内存泄漏
scene.background.dispose()
  1. 将新背景替换上去
let cubeTextureLoader = new THREE.CubeTextureLoader();
cubeTextureLoader.setPath( '/skybox/' );

let cubeTexture = cubeTextureLoader.load( [
    "newpx.png", "newnx.png",
    "newpy.png", "newny.png",
    "newpz.png", "newnz.png"
]);
//需要把色彩空间编码改一下,原因我上一篇说过的
cubeTexture.encoding = THREE.sRGBEncoding

scene.background = cubeTexture;

我没有把完整代码贴上来,把原理解释清楚就ok

评论 11
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值