dat.gui/example.html

13 lines
250 B
HTML
Raw Normal View History

2011-11-07 21:29:37 +00:00
<!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();
2011-11-08 03:31:28 +00:00
gui.add(obj, 'x');
2011-11-07 21:29:37 +00:00
</script>
</body>
</html>