We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d1ea96f commit 8132427Copy full SHA for 8132427
1 file changed
src/core/Game.js
@@ -32,7 +32,7 @@ Phaser.Game = function (width, height, renderer, parent, state, transparent, ant
32
parent = parent || '';
33
state = state || null;
34
transparent = transparent || false;
35
- antialias = antialias || true;
+ antialias = typeof antialias === 'undefined' ? true : antialias;
36
37
/**
38
* Phaser Game ID (for when Pixi supports multiple instances)
0 commit comments