瀏覽代碼

Simplify cluster calculation

tags/v1.1.2
Fen Dweller 5 年之前
父節點
當前提交
e147bf5af4
共有 1 個檔案被更改,包括 3 行新增5 行删除
  1. +3
    -5
      recursive-macro.js

+ 3
- 5
recursive-macro.js 查看文件

@@ -404,11 +404,9 @@ function fill_area(area, weights, variance=0.15)
// if we have nothing at all, it's even better!

while (loopvar < limit) {
if (loopvar <= clusters[candidate.name] && loopvar == 0 && Math.random() < cluster_chances[candidate.name]) {
++count;
}
else if (loopvar <= clusters[candidate.name]) {
if (Math.random() < candidate.weight ? 1 : 0 || Math.random() < 0.75 * cluster_chances[candidate.name]) {
if (loopvar <= clusters[candidate.name]) {
if (Math.random() < candidate.weight ? 1 : Math.random() < cluster_chances[candidate.name]) {
++count;
}
}


Loading…
取消
儲存