I couldn't find any CDNs for FBXLoader (including inflate.js) over the internet. Are there any for three.js? Even better, where can I find the compatible loader, for including it in my project?
Using jsdeliver
will work. It's actually best to use the module version of FBXLoader
since any dependencies like inflate.js
will automatically be imported for you.
https://cdn.jsdelivr.net/npm/[email protected]/examples/jsm/loaders/FBXLoader.js
If you need for some reasons the global script version, just replace jsm
with js
. However, this version is deprecated since r117
and will be removed at the end of 2020.