Files
scratch-render/README.md
Christopher Willis-Ford 51e17c57a9 Establish initial structure, create demo.html
So far this does nothing but clear the screen to magenta, but it's a
start.
2016-05-13 11:29:51 -07:00

37 lines
516 B
Markdown

## scratch-render-webgl
[![Build Status](https://travis-ci.com/LLK/scratch-render-webgl.svg?token=zzz&branch=develop)](https://travis-ci.com/LLK/scratch-render-webgl)
## Installation
```bash
npm install scratch-render-webgl
```
## Setup
## Standalone Build
```bash
make build
```
```html
<script src="/path/to/render-webgl.js"></script>
<script>
var renderer = new window.RenderWebGL();
// do things
</script>
```
## Testing
```bash
make test
```
```bash
make coverage
```
```bash
make benchmark
```