UNPKG

@moderrkowo/jsgl

Version:

Client-side JavaScript library for creating web 2D games. Focusing at objective game.

22 lines (21 loc) 292 B
/** * Represents Shadow settings. */ export type Shadow = { /** * Shadow color */ color: string; /** * Shadow offset X-coordinate */ offsetX: number; /** * Shadow offset Y-coordinate */ offsetY: number; /** * Shadow blur strength */ blur: number; };