1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-09-01 10:17:56 +00:00

rogueviz:: Impossibility presentation updated

This commit is contained in:
Zeno Rogue
2022-05-09 11:09:30 +02:00
parent bd10f06a4c
commit da21b1cb00
2 changed files with 35 additions and 3 deletions

View File

@@ -43,6 +43,8 @@ vector<shape> shapes;
bool known;
int zeroticks;
bool draw_compass(cell *c, const shiftmatrix& V) {
if(!known) {
@@ -85,7 +87,7 @@ bool draw_compass(cell *c, const shiftmatrix& V) {
poly_outline = 0;
for(auto& [col, i, is, sh]: shapes) {
ld t = 36 + ticks / 1000.;
ld t = 36 + (ticks - zeroticks) / 1000.;
auto remap = [&] (int _i, int _is) {
if(i == _i && is == _is) return col;