Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Location of three.js ColladaLoader source file

I have been researching Javascript 3d programming. As such, I have learned about the THREE.js framework, and have had some success with it. Afterwards, I exported a Google Sketchup file I created (.skp) to Collada (.dae) and found some tutorials online that discussed ColladaLoader.js.

The examples stated things like the following:

<script src="three.js"></script>
<script src="ColladaLoader.js"></script>

Does this mean there is a ColladaLoader.js file out there for download? Just like there is a three.js file and a jquery.js file?

I have performed every google search possible and have not found an answer to this question, or the applicable source code file. I would really appreciate an answer. Thanks

like image 872
user1567060 Avatar asked Jul 31 '12 22:07

user1567060


1 Answers

https://github.com/mrdoob/three.js/blob/master/examples/js/loaders/ColladaLoader.js

like image 66
mrdoob Avatar answered Sep 24 '22 02:09

mrdoob