diff --git a/src/gameobjects/components/Origin.js b/src/gameobjects/components/Origin.js index 7962a7be8..43b03092a 100644 --- a/src/gameobjects/components/Origin.js +++ b/src/gameobjects/components/Origin.js @@ -186,8 +186,8 @@ var Origin = { */ updateDisplayOrigin: function () { - this._displayOriginX = Math.round(this.originX * this.width); - this._displayOriginY = Math.round(this.originY * this.height); + this._displayOriginX = this.originX * this.width; + this._displayOriginY = this.originY * this.height; return this; }