dat.gui/example.html
George Michael Brower e3fa6b31c2 closing
2011-11-07 19:31:28 -08:00

13 lines
250 B
HTML

<!DOCTYPE html>
<html>
<head>
</head>
<body>
<script type="text/javascript" src="build/dat.gui.min.js"></script>
<script type="text/javascript">
var obj = { x: 5 };
var gui = new dat.GUI();
gui.add(obj, 'x');
</script>
</body>
</html>