dat.gui/example.html
2013-12-18 16:12:14 -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>