瀏覽代碼

Fix entities sliding around a little when using alt-scrolling

master
Fen Dweller 5 年之前
父節點
當前提交
c6f97410b7
共有 1 個文件被更改,包括 2 次插入2 次删除
  1. +2
    -2
      macrovision.js

+ 2
- 2
macrovision.js 查看文件

@@ -308,8 +308,8 @@ function snapPos(coords) {
function adjustAbs(coords, oldHeight, newHeight) {
const ratio = math.divide(newHeight, oldHeight);

const x = coords.x * ratio;
const y = coords.y * ratio;
const x = (coords.x - config.x) * ratio + config.x;
const y = (coords.y - config.y) * ratio + config.y;

return { x: x, y: y};
}


Loading…
取消
儲存