Default bitmapResolution to 1 if not provided in costume metadata (#485)

* Default bitmapResolution to 1 if not provided in costume metadata. Resolves GH-484
This commit is contained in:
Andrew Sliwinski 2017-03-02 11:21:01 -05:00 committed by Ray Schamp
parent 7042bdb45c
commit a4578ba086

View file

@ -428,16 +428,17 @@ RenderedTarget.prototype.updateAllDrawableProperties = function () {
if (this.renderer) {
var renderedDirectionScale = this._getRenderedDirectionAndScale();
var costume = this.sprite.costumes[this.currentCostume];
var bitmapResolution = costume.bitmapResolution || 1;
var props = {
position: [this.x, this.y],
direction: renderedDirectionScale.direction,
scale: renderedDirectionScale.scale,
visible: this.visible,
skin: costume.skin,
costumeResolution: costume.bitmapResolution,
costumeResolution: bitmapResolution,
rotationCenter: [
costume.rotationCenterX / costume.bitmapResolution,
costume.rotationCenterY / costume.bitmapResolution
costume.rotationCenterX / bitmapResolution,
costume.rotationCenterY / bitmapResolution
]
};
for (var effectName in this.effects) {