mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
11 lines
440 B
HTML
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"><script src="gui.js"></script>
|
|
</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, 'someNumber', 0, 1 );
|
|
</code></pre>
|