Merge pull request #117 from FredrikAppelros/tilescale-fix

tileScale fix for TilingSprite
This commit is contained in:
Mat Groves 2013-05-10 06:33:27 -07:00
commit d7606f3e70

View file

@ -25,7 +25,7 @@ PIXI.TilingSprite = function(texture, width, height)
* @property tileScale * @property tileScale
* @type Point * @type Point
*/ */
this.tileScale = new PIXI.Point(2,1); this.tileScale = new PIXI.Point(1,1);
/** /**
* The offset position of the image that is being tiled * The offset position of the image that is being tiled
* @property tileScale * @property tileScale