mirror of
https://github.com/dataarts/dat.gui.git
synced 2024-12-12 04:08:27 +00:00
31 lines
847 B
HTML
31 lines
847 B
HTML
<!doctype html>
|
|
<head>
|
|
<title>Draggable Button Prototype</title>
|
|
<script type = "text/javascript" src = "../controller.js"></script>
|
|
<script type = "text/javascript" src = "../gui.js"></script>
|
|
<script type = "text/javascript">
|
|
|
|
|
|
var controllableObject = {
|
|
numberProperty: 20,
|
|
anotherNumberProperty: 0,
|
|
textProperty: "a string",
|
|
booleanProperty: false,
|
|
functionProperty: function() {
|
|
alert("I am a function!");
|
|
}
|
|
};
|
|
|
|
|
|
window.onload = function() {
|
|
|
|
GUI.start();
|
|
|
|
// Creates a number box
|
|
GUI.add(controllableObject, "numberProperty");
|
|
}
|
|
</script>
|
|
</head>
|
|
<body>
|
|
</body>
|
|
</html> |