mirror of
https://github.com/photonstorm/phaser
synced 2024-12-18 00:53:42 +00:00
fix antialias bug
This commit is contained in:
parent
d1ea96fd83
commit
8132427870
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ Phaser.Game = function (width, height, renderer, parent, state, transparent, ant
|
||||||
parent = parent || '';
|
parent = parent || '';
|
||||||
state = state || null;
|
state = state || null;
|
||||||
transparent = transparent || false;
|
transparent = transparent || false;
|
||||||
antialias = antialias || true;
|
antialias = typeof antialias === 'undefined' ? true : antialias;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Phaser Game ID (for when Pixi supports multiple instances)
|
* Phaser Game ID (for when Pixi supports multiple instances)
|
||||||
|
|
Loading…
Reference in a new issue