mirror of
https://github.com/photonstorm/phaser
synced 2025-02-17 22:48:34 +00:00
Shadow fill default should be true.
This commit is contained in:
parent
40952d633d
commit
5fe09c90a0
1 changed files with 1 additions and 1 deletions
|
@ -208,7 +208,7 @@ var TextStyle = new Class({
|
|||
if (color === undefined) { color = '#000'; }
|
||||
if (blur === undefined) { blur = 0; }
|
||||
if (shadowStroke === undefined) { shadowStroke = false; }
|
||||
if (shadowFill === undefined) { shadowFill = false; }
|
||||
if (shadowFill === undefined) { shadowFill = true; }
|
||||
|
||||
this.shadowOffsetX = x;
|
||||
this.shadowOffsetY = y;
|
||||
|
|
Loading…
Add table
Reference in a new issue