dat.gui/example.html

13 lines
259 B
HTML
Raw Normal View History

2011-11-07 21:24:02 +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();
gui.add(obj, 'x', 0, 10);
</script>
</body>
</html>