UNPKG

excalibur

Version:

Excalibur.js is a simple JavaScript game engine with TypeScript bindings for making 2D games in HTML5 Canvas. Our mission is to make web game development as simple as possible.

14 lines (13 loc) 310 B
/** * Turn on move and drag events for an {@apilink Actor} */ export interface CapturePointerConfig { /** * Capture PointerMove events (may be expensive!) */ captureMoveEvents: boolean; /** * Capture PointerDrag events (may be expensive!) */ captureDragEvents: boolean; }