1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-12-15 02:28:05 +00:00

improvements to the mobile compass: can be used in modes other than MOVE (long click to switch mode to MOVE anyway); better arrow scaling

This commit is contained in:
Zeno Rogue
2018-07-22 15:54:44 +02:00
parent 5b41f5d157
commit b502b7025d
5 changed files with 9 additions and 8 deletions

View File

@@ -317,7 +317,7 @@ void drawMobileArrow(cell *c, transmatrix V) {
poly_outline = OUTLINE_DEFAULT;
// transmatrix m2 = Id;
ld scale = vid.mobilecompasssize * 7;
ld scale = vid.mobilecompasssize * 5;
// m2[0][0] = scale; m2[1][1] = scale; m2[2][2] = 1;
transmatrix Centered = rgpushxto0(tC0(cwtV * sphereflip));