dat.gui/controllers/controller.function.js

31 lines
610 B
JavaScript

GUI.FunctionController = function() {
this.type = "function";
var _this = this;
GUI.Controller.apply(this, arguments);
this.domElement.addEventListener('click', function() {
_this.fire();
}, false);
this.domElement.style.cursor = "pointer";
this.propertyNameElement.style.cursor = "pointer";
var fireFunction = null;
this.onFire = function(fnc) {
fireFunction = fnc;
return this;
}
this.fire = function() {
_this.object[_this.propertyName].call(_this.object);
if (fireFunction != null) {
fireFunction.call(this);
}
};
};
GUI.extendController(GUI.FunctionController);