Fixed smoothed value in Sprite and Image too.

This commit is contained in:
photonstorm
2014-02-27 21:57:57 +00:00
parent 5c30fd019f
commit a8bd5db7ba
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -724,7 +724,7 @@ Object.defineProperty(Phaser.Image.prototype, "smoothed", {
get: function () {
return !!this.texture.baseTexture.scaleMode;
return !this.texture.baseTexture.scaleMode;
},
+1 -1
View File
@@ -977,7 +977,7 @@ Object.defineProperty(Phaser.Sprite.prototype, "smoothed", {
get: function () {
return !!this.texture.baseTexture.scaleMode;
return !this.texture.baseTexture.scaleMode;
},