[Vuejs]-Opening threejs Compressed OBJ in memory for render

1👍

You can configure your server to serve gzip (in which case the decompression is handled silently by the browser) or you use a utility such as zip.js to unzip your archive at runtime.

I would also suggest considering a more efficient / modern file format than OBJ, such as glTF in its binary form (glb).

Leave a comment