Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 431 Bytes

File metadata and controls

29 lines (18 loc) · 431 Bytes

ColladaLoader2asModule


Installation

npm i colladaloader2asmodule


Usage

ES6

import ColladaLoader from 'colladaloader2asmodule'

const loader = new ColladaLoader();

loader.load(pathName, (file) => { //do stuff });

ES5

var ColladaLoader = require('colladaloader2asmodule');

var loader = new ColladaLoader();

loader.load(pathName, (file) => { //do stuff });