0.0.1 • Published 6 years ago

three-collada-loader-ds v0.0.1

Weekly downloads
2
License
MIT
Repository
github
Last release
6 years ago

three-collada-loader-ds

This is the Three.js Collada loader "extras" package found in the Three.js source (example).

This is an edited version in which all elements are treated as double sided, thus the 'ds'.

Usage:

var ColladaLoader = require('three-collada-loader');

var loader = new ColladaLoader();
loader.load( 'path/to/model.dae', function ( collada ) {
    // Use data here
});

See the offical Three.js documentation for more information and usage.