dat.gui/elements/controller-boolean/controller-boolean.js

21 lines
223 B
JavaScript

Gui.register('controller-boolean', function(value) {
return typeof value == 'boolean';
});
Polymer('controller-boolean', {
ready: function() {
},
toggle: function() {
this.value = !this.value;
}
});