UNPKG

gl2d

Version:

2D graphics package for WebGL

26 lines (25 loc) 474 B
/** * The status of a surface event. */ export declare const enum Status { /** * The action has just begun. */ Start = 0, /** * Movement is occurring, but without dragging. */ Move = 1, /** * Both movement and dragging are occurring. */ Drag = 2, /** * The action has left the boundaries of the canvas. */ Leave = 3, /** * The action is over. */ End = 4, }