forked from phaserjs/phaser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconst.js
More file actions
24 lines (19 loc) · 873 Bytes
/
const.js
File metadata and controls
24 lines (19 loc) · 873 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
var FILE_CONST = {
LOADER_IDLE: 0,
LOADER_LOADING: 1,
LOADER_PROCESSING: 2,
LOADER_COMPLETE: 3,
LOADER_DESTROYED: 4,
FILE_PENDING: 5, // file is in the load queue but not yet started
FILE_LOADING: 6, // file has been started to load by the loader (onLoad called)
FILE_LOADED: 7, // file has loaded successfully, awaiting processing
FILE_FAILED: 8, // file failed to load
FILE_PROCESSING: 9, // file is being processed (onProcess callback)
FILE_WAITING_LINKFILE: 10, // file is being processed (onProcess callback)
FILE_ERRORED: 11, // file is being processed (onProcess callback)
FILE_COMPLETE: 12, // file has finished processing
FILE_DESTROYED: 13, // file has been destroyed
TEXTURE_ATLAS_JSON_ARRAY: 20,
TEXTURE_ATLAS_JSON_HASH: 21
};
module.exports = FILE_CONST;