Nodejs utilities dealing with Collada documents. This project is under development.
- Valid collada documents
- List collada external resource dependencies from file
- Build gltf document from Collada conversion
You must have install DAEValidator application and its validation schemas from OpenCOLLADA project in order to deploy this validation service.
Your path environment variable must point to the installed DAEValidator binaries location.
Required files are:
- collada_schema_1_4_1
- collada_schema_1_5
- DAEValidator
$ npm install collada-utils
const collada_utils = require("collada-utils");
const deps = collada_utils.dependencies(model_path);
collada.validate(model_path)
.then(() => console.log("success!"))
.catch(err => console.error(err))
Maxime Helen - [email protected]
David Gaya - [email protected]
MIT