What is the difference between ColladaLoader.js
and ColladaLoader2.js
given by Mr.Doob in examples/
folder of GitHub?
Does one have an advantage over the other?
What is the difference between ColladaLoader.js
and ColladaLoader2.js
given by Mr.Doob in examples/
folder of GitHub?
Does one have an advantage over the other?
I suppose you are referring to mrdoob
three.js
JavaScript 3D library.
Its examples/js/loaders
folder do include a ColladaLoader.js
and a ColladaLoader2.js
file.
Note that there was an issue with the first one (see issue 7388): use the one from the dev branch: dev/examples/js/loaders/ColladaLoader.js
As mentioned in issue 7256:
the current
ColladaLoader
is out of control.
I've started a newColladaLoader2
from scratch in thedev
branch.
So the 2 is a re-implementation of the first one.