Skip to content

klokoy/collada2gltf

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

#Collada to gltf converter for Node.js

A simple wrapper for the collada2gltf program for node.

#Requirements

  • collada2gltf, Installation instructions and binaries can be found at the glTF page.

#Usage

var collada2gltf = require('collada2gltf');

collada2gltf('source.dae', function(err) {
    //Now you have a set of gltf files in your current directory;)
    //source.bin, source.json + shader files (source.0FS.glsl, source.0VS.glsl)
});

#Options

If you do not have collada2gltf in your path you can give it in options.

collada2gltf('source.dae', {path: 'path/to/bin'}, function(err) {
    //Done
})

About

Simple node wrapper around collada2gltf

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published