WebGL-based rendering engine for Scratch 3.0
Find a file
Christopher Willis-Ford 74deedba1b Add .editorconfig
2016-06-08 09:27:01 -07:00
.idea Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
build Add isTouchingColor(drawableID, color3ub) 2016-06-02 15:09:02 -07:00
src Implement color-touching-color 2016-06-06 16:21:24 -07:00
.editorconfig Add .editorconfig 2016-06-08 09:27:01 -07:00
.eslintrc Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
.gitattributes Add .editorconfig 2016-06-08 09:27:01 -07:00
.gitignore Move build products and demo.html into subdir 2016-05-13 11:42:40 -07:00
LICENSE Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
Makefile Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
package.json Support rendering SVGs 2016-05-18 12:35:08 -07:00
README.md Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
scratch-render-webgl.iml Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
TRADEMARK Establish initial structure, create demo.html 2016-05-13 11:29:51 -07:00
webpack.config.js Move build products and demo.html into subdir 2016-05-13 11:42:40 -07:00

scratch-render-webgl

Build Status

Installation

npm install scratch-render-webgl

Setup

Standalone Build

make build
<script src="/path/to/render-webgl.js"></script>
<script>
    var renderer = new window.RenderWebGL();
    // do things
</script>

Testing

make test
make coverage
make benchmark