Added Phaser.FOREVER, Phaser.BlendModes and Phaser.ScaleModes consts.

This commit is contained in:
photonstorm 2017-08-02 17:06:27 +01:00
parent 9eb723cfc2
commit 1950316d19
3 changed files with 9 additions and 1 deletions

View file

@ -1,4 +1,4 @@
var CHECKSUM = {
build: '9aad2b50-7718-11e7-a802-eddafadf9983'
build: '249ad5a0-779c-11e7-90d1-fbccc1b91684'
};
module.exports = CHECKSUM;

View file

@ -1,12 +1,18 @@
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,

View file

@ -1,3 +1,5 @@
// Phaser.BlendModes
module.exports = {
NORMAL: 0,