2
0
Fork 0
mirror of https://github.com/photonstorm/phaser synced 2024-12-18 09:03:29 +00:00

fix antialias bug

This commit is contained in:
Luiz "Bills" 2013-09-21 21:40:36 -03:00
parent d1ea96fd83
commit 8132427870

View file

@ -32,7 +32,7 @@ Phaser.Game = function (width, height, renderer, parent, state, transparent, ant
parent = parent || '';
state = state || null;
transparent = transparent || false;
antialias = antialias || true;
antialias = typeof antialias === 'undefined' ? true : antialias;
/**
* Phaser Game ID (for when Pixi supports multiple instances)