mirror of
https://github.com/photonstorm/phaser
synced 2024-11-26 06:30:38 +00:00
Added Phaser.FOREVER, Phaser.BlendModes and Phaser.ScaleModes consts.
This commit is contained in:
parent
9eb723cfc2
commit
1950316d19
3 changed files with 9 additions and 1 deletions
|
@ -1,4 +1,4 @@
|
||||||
var CHECKSUM = {
|
var CHECKSUM = {
|
||||||
build: '9aad2b50-7718-11e7-a802-eddafadf9983'
|
build: '249ad5a0-779c-11e7-90d1-fbccc1b91684'
|
||||||
};
|
};
|
||||||
module.exports = CHECKSUM;
|
module.exports = CHECKSUM;
|
|
@ -1,12 +1,18 @@
|
||||||
|
|
||||||
var CONST = {
|
var CONST = {
|
||||||
|
|
||||||
VERSION: '3.0.0',
|
VERSION: '3.0.0',
|
||||||
|
|
||||||
|
BlendModes: require('./renderer/BlendModes'),
|
||||||
|
ScaleModes: require('./renderer/ScaleModes'),
|
||||||
|
|
||||||
AUTO: 0,
|
AUTO: 0,
|
||||||
CANVAS: 1,
|
CANVAS: 1,
|
||||||
WEBGL: 2,
|
WEBGL: 2,
|
||||||
HEADLESS: 3,
|
HEADLESS: 3,
|
||||||
|
|
||||||
|
FOREVER: -1,
|
||||||
|
|
||||||
NONE: 4,
|
NONE: 4,
|
||||||
UP: 5,
|
UP: 5,
|
||||||
DOWN: 6,
|
DOWN: 6,
|
||||||
|
|
|
@ -1,3 +1,5 @@
|
||||||
|
// Phaser.BlendModes
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
|
||||||
NORMAL: 0,
|
NORMAL: 0,
|
||||||
|
|
Loading…
Reference in a new issue