Customized biomes (#396)

* Start with customized biome UI

* Refactor customized page, split logic

* Implement biome replacements

* Remove debug messages

* Disable create button when nothing is modified
This commit is contained in:
Misode
2023-12-06 20:40:30 +01:00
committed by GitHub
parent 1e28b82907
commit 886991af8e
10 changed files with 329 additions and 110 deletions
@@ -53,8 +53,5 @@ export function BasicSettings({ model, initialModel, changeModel }: Props) {
initial={initialModel.ravines} />
</div>}
</div>
<CustomizedSlider label="Biome size" help="The scale of the biome layout, 6 corresponds to the large biomes preset"
value={model.biomeSize} onChange={v => changeModel({ biomeSize: v })}
min={1} max={8} initial={initialModel.biomeSize} />
</>
}