forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.d.ts
More file actions
41 lines (41 loc) · 929 Bytes
/
Copy pathconst.d.ts
File metadata and controls
41 lines (41 loc) · 929 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
export declare const VERSION = "3.0.0";
export declare const AUTO = 0;
export declare const CANVAS = 1;
export declare const WEBGL = 2;
export declare const CONTAINER = 99;
export declare const IMAGE = 20;
export declare const state: {
PENDING: number;
INSTALLED: number;
BOOT: number;
INIT: number;
PRELOAD: number;
CREATE: number;
UPDATE: number;
RENDER: number;
SHUTDOWN: number;
};
export declare const blendModes: {
NORMAL: number;
ADD: number;
MULTIPLY: number;
SCREEN: number;
OVERLAY: number;
DARKEN: number;
LIGHTEN: number;
COLOR_DODGE: number;
COLOR_BURN: number;
HARD_LIGHT: number;
SOFT_LIGHT: number;
DIFFERENCE: number;
EXCLUSION: number;
HUE: number;
SATURATION: number;
COLOR: number;
LUMINOSITY: number;
};
export declare const scaleModes: {
DEFAULT: number;
LINEAR: number;
NEAREST: number;
};