├── .gitattributes ├── .gitignore ├── Readme.md ├── blender-addon ├── Readme.md └── html5_animations.py └── js ├── .jshintrc ├── .npmignore ├── Readme.md ├── dist ├── blender-html5-animations.js └── blender-html5-animations.min.js ├── docs ├── Action.html ├── Action.js.html ├── ActionLibrary.html ├── ActionLibrary.js.html ├── FCurve.html ├── FCurve.js.html ├── FCurveArray.html ├── FCurveArray.js.html ├── Keyframe.html ├── Keyframe.js.html ├── Marker.html ├── Marker.js.html ├── enums_Easing.js.html ├── enums_Extrapolation.js.html ├── enums_Interpolation.js.html ├── enums_RotationMode.js.html ├── fonts │ ├── OpenSans-Bold-webfont.eot │ ├── OpenSans-Bold-webfont.svg │ ├── OpenSans-Bold-webfont.woff │ ├── OpenSans-BoldItalic-webfont.eot │ ├── OpenSans-BoldItalic-webfont.svg │ ├── OpenSans-BoldItalic-webfont.woff │ ├── OpenSans-Italic-webfont.eot │ ├── OpenSans-Italic-webfont.svg │ ├── OpenSans-Italic-webfont.woff │ ├── OpenSans-Light-webfont.eot │ ├── OpenSans-Light-webfont.svg │ ├── OpenSans-Light-webfont.woff │ ├── OpenSans-LightItalic-webfont.eot │ ├── OpenSans-LightItalic-webfont.svg │ ├── OpenSans-LightItalic-webfont.woff │ ├── OpenSans-Regular-webfont.eot │ ├── OpenSans-Regular-webfont.svg │ └── OpenSans-Regular-webfont.woff ├── global.html ├── index.html ├── scripts │ ├── linenumber.js │ └── prettify │ │ ├── Apache-License-2.0.txt │ │ ├── lang-css.js │ │ └── prettify.js └── styles │ ├── jsdoc-default.css │ ├── prettify-jsdoc.css │ └── prettify-tomorrow.css ├── example ├── animations.blend ├── export_animations.py └── js │ ├── .jshintrc │ ├── gl-matrix-min.js │ ├── index.html │ └── script.js ├── jsdoc.config.json ├── package.json ├── src ├── Action.js ├── ActionLibrary.js ├── FCurve.js ├── FCurveArray.js ├── Keyframe.js ├── Marker.js ├── bezier.js ├── easing.js └── index.js ├── webpack.config.js └── webpack.min.config.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | exported-* 2 | node_modules/ 3 | npm-debug.log 4 | *.blend? 5 | -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/Readme.md -------------------------------------------------------------------------------- /blender-addon/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/blender-addon/Readme.md -------------------------------------------------------------------------------- /blender-addon/html5_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/blender-addon/html5_animations.py -------------------------------------------------------------------------------- /js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/.jshintrc -------------------------------------------------------------------------------- /js/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/.npmignore -------------------------------------------------------------------------------- /js/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/Readme.md -------------------------------------------------------------------------------- /js/dist/blender-html5-animations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/dist/blender-html5-animations.js -------------------------------------------------------------------------------- /js/dist/blender-html5-animations.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/dist/blender-html5-animations.min.js -------------------------------------------------------------------------------- /js/docs/Action.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Action.html -------------------------------------------------------------------------------- /js/docs/Action.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Action.js.html -------------------------------------------------------------------------------- /js/docs/ActionLibrary.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/ActionLibrary.html -------------------------------------------------------------------------------- /js/docs/ActionLibrary.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/ActionLibrary.js.html -------------------------------------------------------------------------------- /js/docs/FCurve.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/FCurve.html -------------------------------------------------------------------------------- /js/docs/FCurve.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/FCurve.js.html -------------------------------------------------------------------------------- /js/docs/FCurveArray.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/FCurveArray.html -------------------------------------------------------------------------------- /js/docs/FCurveArray.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/FCurveArray.js.html -------------------------------------------------------------------------------- /js/docs/Keyframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Keyframe.html -------------------------------------------------------------------------------- /js/docs/Keyframe.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Keyframe.js.html -------------------------------------------------------------------------------- /js/docs/Marker.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Marker.html -------------------------------------------------------------------------------- /js/docs/Marker.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/Marker.js.html -------------------------------------------------------------------------------- /js/docs/enums_Easing.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/enums_Easing.js.html -------------------------------------------------------------------------------- /js/docs/enums_Extrapolation.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/enums_Extrapolation.js.html -------------------------------------------------------------------------------- /js/docs/enums_Interpolation.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/enums_Interpolation.js.html -------------------------------------------------------------------------------- /js/docs/enums_RotationMode.js.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/enums_RotationMode.js.html -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Bold-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Bold-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Bold-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Bold-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Bold-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Bold-webfont.woff -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-BoldItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-BoldItalic-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-BoldItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-BoldItalic-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-BoldItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-BoldItalic-webfont.woff -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Italic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Italic-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Italic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Italic-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Italic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Italic-webfont.woff -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Light-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Light-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Light-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Light-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Light-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Light-webfont.woff -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-LightItalic-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-LightItalic-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-LightItalic-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-LightItalic-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-LightItalic-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-LightItalic-webfont.woff -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Regular-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Regular-webfont.eot -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Regular-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Regular-webfont.svg -------------------------------------------------------------------------------- /js/docs/fonts/OpenSans-Regular-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/fonts/OpenSans-Regular-webfont.woff -------------------------------------------------------------------------------- /js/docs/global.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/global.html -------------------------------------------------------------------------------- /js/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/index.html -------------------------------------------------------------------------------- /js/docs/scripts/linenumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/scripts/linenumber.js -------------------------------------------------------------------------------- /js/docs/scripts/prettify/Apache-License-2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/scripts/prettify/Apache-License-2.0.txt -------------------------------------------------------------------------------- /js/docs/scripts/prettify/lang-css.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/scripts/prettify/lang-css.js -------------------------------------------------------------------------------- /js/docs/scripts/prettify/prettify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/scripts/prettify/prettify.js -------------------------------------------------------------------------------- /js/docs/styles/jsdoc-default.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/styles/jsdoc-default.css -------------------------------------------------------------------------------- /js/docs/styles/prettify-jsdoc.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/styles/prettify-jsdoc.css -------------------------------------------------------------------------------- /js/docs/styles/prettify-tomorrow.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/docs/styles/prettify-tomorrow.css -------------------------------------------------------------------------------- /js/example/animations.blend: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/animations.blend -------------------------------------------------------------------------------- /js/example/export_animations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/export_animations.py -------------------------------------------------------------------------------- /js/example/js/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/js/.jshintrc -------------------------------------------------------------------------------- /js/example/js/gl-matrix-min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/js/gl-matrix-min.js -------------------------------------------------------------------------------- /js/example/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/js/index.html -------------------------------------------------------------------------------- /js/example/js/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/example/js/script.js -------------------------------------------------------------------------------- /js/jsdoc.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/jsdoc.config.json -------------------------------------------------------------------------------- /js/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/package.json -------------------------------------------------------------------------------- /js/src/Action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/Action.js -------------------------------------------------------------------------------- /js/src/ActionLibrary.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/ActionLibrary.js -------------------------------------------------------------------------------- /js/src/FCurve.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/FCurve.js -------------------------------------------------------------------------------- /js/src/FCurveArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/FCurveArray.js -------------------------------------------------------------------------------- /js/src/Keyframe.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/Keyframe.js -------------------------------------------------------------------------------- /js/src/Marker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/Marker.js -------------------------------------------------------------------------------- /js/src/bezier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/bezier.js -------------------------------------------------------------------------------- /js/src/easing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/easing.js -------------------------------------------------------------------------------- /js/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/src/index.js -------------------------------------------------------------------------------- /js/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/webpack.config.js -------------------------------------------------------------------------------- /js/webpack.min.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KoltesDigital/blender-html5-animations/HEAD/js/webpack.min.config.js --------------------------------------------------------------------------------