lazy-widgets
Version:
Typescript retained mode GUI for the HTML canvas API
15 lines • 558 B
JavaScript
/**
* The current state of a {@link BaseClickHelper}
*
* @category Helper
*/
export var ClickState;
(function (ClickState) {
/** No pointer is hovering over this clickable widget */
ClickState[ClickState["Released"] = 0] = "Released";
/** A pointer is hovering over this clickable widget */
ClickState[ClickState["Hover"] = 1] = "Hover";
/** A pointer's button is being held down over this clickable widget */
ClickState[ClickState["Hold"] = 2] = "Hold";
})(ClickState || (ClickState = {}));
//# sourceMappingURL=ClickState.js.map