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.

13 lines (12 loc) 243 B
/** * Describes the different image wrapping modes */ export declare enum ImageWrapping { Clamp = "Clamp", Repeat = "Repeat", Mirror = "Mirror" } /** * */ export declare function parseImageWrapping(val: string): ImageWrapping;