Skip to content
This repository has been archived by the owner on Dec 10, 2021. It is now read-only.

Latest commit

 

History

History
16 lines (11 loc) · 591 Bytes

README.md

File metadata and controls

16 lines (11 loc) · 591 Bytes

three-collada-loader

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

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.