1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-10-28 04:17:39 +00:00

fixed pseudogonal to pseudohedral

This commit is contained in:
Zeno Rogue
2021-10-15 22:38:24 +02:00
parent cb75ba44dc
commit ce4be1bc6b
4 changed files with 7 additions and 7 deletions

View File

@@ -2184,7 +2184,7 @@ EX void show3D() {
dialog::addBoolItem_action(XLAT("fixed Y/Z rotation"), vid.fixed_yz, 'Z');
if(WDIM == 2 && GDIM == 3) {
add_edit(vid.pseudogonal);
add_edit(vid.pseudohedral);
// add_edit(vid.depth_bonus);
}
@@ -2303,8 +2303,8 @@ EX int config3 = addHook(hooks_configfile, 100, [] {
param_f(linepatterns::parallel_max, "parallel_max")
->editable(0, 360*degree, 15*degree, "last parallel drawn", "", 'n');
param_f(vid.depth_bonus, "depth_bonus", 0)
->editable(-5, 5, .1, "depth bonus in pseudogonal", "", 'b');
param_b(vid.pseudogonal, "pseudogonal", false)
->editable(-5, 5, .1, "depth bonus in pseudohedral", "", 'b');
param_b(vid.pseudohedral, "pseudogonal", false)
->editable("make the tiles flat", 'p');
param_f(vid.depth, "depth", "3D depth", 1)
->editable(0, 5, .1, "Ground level below the plane", "", 'd')