dat.gui/example.html

14 lines
253 B
HTML
Raw Normal View History

2011-11-07 21:29:37 +00:00
<!DOCTYPE html>
<html>
<head>
</head>
<body>
2013-12-19 00:12:14 +00:00
<script type="text/javascript" src="build/dat.gui.min.js"></script>
2011-11-07 21:29:37 +00:00
<script type="text/javascript">
var obj = { x: 5 };
var gui = new dat.GUI();
gui.add(obj, 'x');
2011-11-07 21:29:37 +00:00
</script>
</body>
</html>