FBXLoader support compressed texture?

I found this https://github.com/mrdoob/three.js/issues/13911
and this https://github.com/mrdoob/three.js/issues/13203

seems it does not supprted yet , but seem dds loader and pvrtc loader in example, like this https://threejs.org/examples/?q=loader#webgl_loader_texture_ktx

Is there any possibilityto intergrate those into fbxloader ?

this is a reference https://gamedev.stackexchange.com/q/5171/91193 about compressed texture

It’s not supported right now but @looeee has already worked on this. His PR might be a good starting point:

Using compressed textures is an important feature and I believe three.js will pay more attention to this topic in the future. For now, providing platform independent texture compression is difficult since no format is supported on all platforms. That means, you have to generate multiple versions of the same texture and use the correct one for a specific device. Besides, the most promising format ASTC is still one of the worst supported standards.

https://webglstats.com/webgl/extension/WEBGL_compressed_texture_astc

1 Like