1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2024-06-14 09:26:52 +00:00

arg:: ring color, ballangle and topz

This commit is contained in:
Zeno Rogue 2018-10-23 20:09:34 +02:00
parent 8a37a43547
commit b530341841

View File

@ -1446,6 +1446,9 @@ int read_config_args() {
else if(argis("-back")) {
PHASEFROM(2); shift(); backcolor = arghex();
}
else if(argis("-ring")) {
PHASEFROM(2); shift(); ringcolor = arghex();
}
else if(argis("-borders")) {
PHASEFROM(2); shift(); bordcolor = arghex();
}
@ -1487,6 +1490,14 @@ int read_config_args() {
else if(argis("-PM")) {
PHASEFROM(2); shift(); pmodel = eModel(argi());
}
else if(argis("-ballangle")) {
PHASEFROM(2);
shift(); vid.ballangle = argf();
}
else if(argis("-topz")) {
PHASEFROM(2);
shift(); conformal::top_z = argf();
}
else if(argis("-hp")) {
PHASEFROM(2);
shift(); conformal::model_orientation = argf();