mirror of
https://github.com/photonstorm/phaser
synced 2024-11-24 05:33:35 +00:00
World thickness now 128.
This commit is contained in:
parent
9516e6b188
commit
04df05cf73
1 changed files with 1 additions and 1 deletions
|
@ -123,7 +123,7 @@ var World = new Class({
|
|||
if (y === undefined) { y = 0; }
|
||||
if (width === undefined) { width = this.scene.sys.game.config.width; }
|
||||
if (height === undefined) { height = this.scene.sys.game.config.height; }
|
||||
if (thickness === undefined) { thickness = 64; }
|
||||
if (thickness === undefined) { thickness = 128; }
|
||||
if (left === undefined) { left = true; }
|
||||
if (right === undefined) { right = true; }
|
||||
if (top === undefined) { top = true; }
|
||||
|
|
Loading…
Reference in a new issue