dat.gui/README.md
George Michael Brower 2d2f4ee888 no message
2014-08-21 13:20:06 -04:00

20 lines
297 B
Markdown

# dat.gui
Quickly configurable controllers for the web.
## Usage
Include
```html
<script src="gui.js"></script>
```
With very little code, dat gui creates an interface that you can use to modify variables.
```javascript
var gui = new dat.gui();
gui.add( object, 'someNumber', 0, 1 );
```