diff --git a/src/gameobjects/graphics/Graphics.js b/src/gameobjects/graphics/Graphics.js index 433a24077e..1704d492c0 100644 --- a/src/gameobjects/graphics/Graphics.js +++ b/src/gameobjects/graphics/Graphics.js @@ -203,7 +203,10 @@ var Graphics = new Class({ * @private * @since 3.0.0 */ - this._lineWidth = 1.0; + this._lineWidth = 1; + + this.lineStyle(1, 0, 0); + this.fillStyle(0, 0); this.setDefaultStyles(options); },