瀏覽代碼

Add the new SI prefixes

Also reduce the minimum height for the world when manually entering
a size -- it used to be a nanometer. The minimum exists so that
the world size never becomes 0. Perhaps this should be changed.
master
Fen Dweller 2 年之前
父節點
當前提交
30ee13fe64
共有 2 個檔案被更改,包括 2 行新增2 行删除
  1. +1
    -1
      macrovision.js
  2. +1
    -1
      math.min.js

+ 1
- 1
macrovision.js 查看文件

@@ -5992,7 +5992,7 @@ function updateWorldHeight() {
return;
}

const newHeight = Math.max(0.000000001, value);
const newHeight = Math.max(1e-40, value);
const oldHeight = config.height;

setWorldHeight(oldHeight, math.unit(newHeight, unit), true);


+ 1
- 1
math.min.js
文件差異過大導致無法顯示
查看文件


Loading…
取消
儲存