-
Notifications
You must be signed in to change notification settings - Fork 158
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Updated to latest OpenCOLLADA * Write animation clips out as animation groups * Fix writer test * Point gitmodules at our fork * Use OpenCOLLADA fork * Updated CHANGES.md * Update OpenCOLLADA with fix for VC conversion * Added js subfolder with validation in tests * Added validation to CI * Updated license to BSD * Need to go up one more directory * Fix placement of merge animations * Fix it in the non-group section as well * Update .travis.yml * Update .travis.yml * Update .travis.yml * Update .travis.yml * Updated OpenCOLLADA * Update .travis.yml * Invalidate appveyor cache when CMake changes * Added PCRE to COLLADAFramework module include * PCRE include in COLLADASaxFrameworkLoader * Missing PCRE include * Hopefully fixes the build * Remove redundant include
- Loading branch information
1 parent
fda2348
commit aaaaf7f
Showing
8 changed files
with
651 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node_modules |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# COLLADA2GLTF E2E Validation | ||
This subproject implements COLLADA2GLTF end-to-end validation. | ||
|
||
COLLADA source models are pulled from the | ||
[glTF-Sample-Models](https://github.com/KhronosGroup/glTF-Sample-Models) | ||
repository and the built converter binary is used to convert them to glTF. | ||
|
||
The | ||
[glTF-Validator](https://github.com/KhronosGroup/glTF-Validator) | ||
is then used to validate the converted models, to make sure that they: | ||
* Have the expected number of primitives | ||
* Use the expected glTF features: | ||
* Animations | ||
* Morph Targets | ||
* Skins | ||
* Textures | ||
* Have no: | ||
* Errors | ||
* Infos | ||
* Warnings | ||
|
||
These tests are implemented as a set of ES6 Mocha tests. You can run them | ||
with: | ||
|
||
```bash | ||
npm install | ||
|
||
npm run test | ||
``` |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"name": "collada2gltf-test", | ||
"version": "1.0.0", | ||
"description": "Integration testing COLLADA2GLTF converter", | ||
"scripts": { | ||
"test": "mocha -r esm" | ||
}, | ||
"author": "Rob Taglang", | ||
"license": "BSD", | ||
"devDependencies": {}, | ||
"dependencies": { | ||
"bluebird": "^3.5.3", | ||
"chai": "^4.2.0", | ||
"chai-subset": "^1.6.0", | ||
"esm": "^3.0.84", | ||
"gltf-validator": "^2.0.0-dev.2.7", | ||
"mocha": "^5.2.0", | ||
"tmp": "0.0.33" | ||
} | ||
} |
Oops, something went wrong.