mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
97adbace4d
This build makes dat.gui commonjs friendly and allows it to be consumed as a regular commonjs package. All tests are passing, API is backward compatible.
14 lines
253 B
HTML
14 lines
253 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>
|