dat.gui/example.html
mike 581e482823 formatted source
I’ve run the source files through js-beautify because my editor (Atom)
kept barfing on things like not having newlines at the ends of files.
2016-06-25 14:25:23 -04:00

20 lines
295 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>