37 lines
516 B
Markdown
37 lines
516 B
Markdown
## scratch-render-webgl
|
|
|
|
[](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
|
|
```
|