I recently noticed that the simple old three.js
file in the mrdoob/three.js/tree/dev/build
folder on GitHub is gone. The only ones to choose from are three.module.js
and three.webgpu.js
, which both now import the file three.core.js
, making the three.js library no longer contained in a single file (importing three.module.js
triggers a request to three.core.js
)
Is this a permanent thing going forward?
It would be nicer if whichever three.js version you chose didn’t make another HTTP request to three.core.js.
Can three.core.js be packed into each individual library (the standard one and the WebGPU one)?
See what I’m talking about here: three.js/build at dev · mrdoob/three.js · GitHub