Merge pull request #1497 from amazinigmech2418/revert-1453-round-setxy

Revert "round x and y like Scratch 2 does"
This commit is contained in:
Ray Schamp 2018-08-20 10:36:46 -04:00 committed by GitHub
commit 4f18cdd4ee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -272,8 +272,8 @@ class RenderedTarget extends Target {
const oldY = this.y;
if (this.renderer) {
const position = this.renderer.getFencedPositionOfDrawable(this.drawableID, [x, y]);
position[0] = Math.round(position[0]);
position[1] = Math.round(position[1]);
position[0] = this._roundCoord(position[0], 8);
position[1] = this._roundCoord(position[1], 8);
this.x = position[0];
this.y = position[1];
@ -285,8 +285,8 @@ class RenderedTarget extends Target {
this.runtime.requestRedraw();
}
} else {
this.x = Math.round(x);
this.y = Math.round(y);
this.x = this._roundCoord(x, 8);
this.y = this._roundCoord(y, 8);
}
this.emit(RenderedTarget.EVENT_TARGET_MOVED, this, oldX, oldY, force);
this.runtime.requestTargetsUpdate(this);