1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-11-14 12:47:10 +00:00

screenshots are more configurable now

This commit is contained in:
Zeno Rogue
2018-12-13 13:33:08 +01:00
parent 6274beb6f6
commit c73b598d93
10 changed files with 243 additions and 166 deletions

View File

@@ -317,6 +317,14 @@ void initConfig() {
addsaver(crystal::compass_probability, "compass-probability");
addsaver(crystal::view_coordinates, "crystal-coordinates");
addsaver(shot::shotx, "shotx");
addsaver(shot::shoty, "shoty");
addsaver(shot::make_svg, "shotsvg");
addsaver(shot::transparent, "shottransparent");
addsaver(shot::gamma, "shotgamma");
addsaver(shot::caption, "shotcaption");
addsaver(shot::fade, "shotfade");
#if CAP_TEXTURE
addsaver(texture::texture_aura, "texture-aura", false);
@@ -1861,7 +1869,9 @@ unordered_map<string, ld&> params = {
{"sang", conformal::spiral_angle},
{"spiralx", conformal::spiral_x},
{"spiraly", conformal::spiral_y},
{"cprob", crystal::compass_probability}
{"cprob", crystal::compass_probability},
{"gamma", shot::gamma},
{"fade", shot::fade}
};
}