我是靠谱客的博主 细心黑夜,最近开发中收集的这篇文章主要介绍Threejs报错:RGBELoader Bad File Format: bad initial token,觉得挺不错的,现在分享给大家,希望可以做个参考。
概述
原因:加载进来的资源路径报错
加载进来的所有资源,最好放在/public/文件夹下,否则会报错
资源所在位置:
public/textures/hdr/skybox.hdr
// 加载hdr环境图
const rgbeLoader = new RGBELoader();
rgbeLoader.loadAsync("/textures/hdr/skybox.hdr").then((texture) => {
texture.mapping = THREE.EquirectangularReflectionMapping;
scene.background = texture;
scene.environment = texture;
});
最后
以上就是细心黑夜为你收集整理的Threejs报错:RGBELoader Bad File Format: bad initial token的全部内容,希望文章能够帮你解决Threejs报错:RGBELoader Bad File Format: bad initial token所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复