mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-12-17 03:28:05 +00:00
improved help for editable values
This commit is contained in:
11
util.cpp
11
util.cpp
@@ -445,9 +445,14 @@ EX ld parseld(const string& s) {
|
||||
return real(ep.parse());
|
||||
}
|
||||
|
||||
EX string parser_help() {
|
||||
return XLAT("Functions available: %1",
|
||||
"(a)sin(h), (a)cos(h), (a)tan(h), exp, log, abs, re, im, conj, let(t=...,...t...), floor, frac, e, i, pi, s, ms, mousex, mousey, mousez, shot [1 if taking screenshot/animation], sqrt, to01, random, edge(7,3), regradius(7,3), ifp(a,v,w) [if positive]");
|
||||
EX string available_functions() {
|
||||
return
|
||||
"(a)sin(h), (a)cos(h), (a)tan(h), exp, log, abs, re, im, conj, let(t=...,...t...), floor, frac, sqrt, to01, random, edge(7,3), regradius(7,3), ifp(a,v,w) [if positive]";
|
||||
}
|
||||
|
||||
EX string available_constants() {
|
||||
return
|
||||
"e, i, pi, s, ms, mousex, mousey, mousez, shot [1 if taking screenshot/animation]";
|
||||
}
|
||||
|
||||
#if HDR
|
||||
|
||||
Reference in New Issue
Block a user