mirror of
https://github.com/photonstorm/phaser
synced 2024-11-22 12:43:26 +00:00
24 lines
310 B
JavaScript
24 lines
310 B
JavaScript
|
|
var CONST = {
|
|
|
|
VERSION: '3.0.0',
|
|
|
|
BlendModes: require('./renderer/BlendModes'),
|
|
ScaleModes: require('./renderer/ScaleModes'),
|
|
|
|
AUTO: 0,
|
|
CANVAS: 1,
|
|
WEBGL: 2,
|
|
HEADLESS: 3,
|
|
|
|
FOREVER: -1,
|
|
|
|
NONE: 4,
|
|
UP: 5,
|
|
DOWN: 6,
|
|
LEFT: 7,
|
|
RIGHT: 8
|
|
|
|
};
|
|
|
|
module.exports = CONST;
|