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

11 lines
440 B
HTML

<h1 id="dat-gui">dat.gui</h1>
<p>Quickly configurable controllers for the web. </p>
<h2 id="usage">Usage</h2>
<p>Include </p>
<pre><code class="lang-html">&lt;script src=&quot;gui.js&quot;&gt;&lt;/script&gt;
</code></pre>
<p>With very little code, dat.GUI creates an interface that you can use to modify variables.</p>
<pre><code class="lang-javascript">var gui = new dat.gui();
gui.add( object, &#39;someNumber&#39;, 0, 1 );
</code></pre>