mirror of
https://github.com/zenorogue/hyperrogue.git
synced 2025-04-04 09:47:02 +00:00
lshift+arrows now rotate the model in rug
This commit is contained in:
parent
f1a38b8389
commit
5e0aac5e92
17
control.cpp
17
control.cpp
@ -322,9 +322,22 @@ EX void full_forward_camera(ld t) {
|
||||
}
|
||||
|
||||
EX void full_rotate_camera(int dir, ld val) {
|
||||
if(history::on)
|
||||
if(rug::rug_control() && lshiftclick) {
|
||||
hyperpoint h;
|
||||
if(nonisotropic) {
|
||||
transmatrix T2 = eupush( tC0(inverse(View)) );
|
||||
transmatrix nlp = View * T2;
|
||||
auto rV = inverse(nlp) * View;
|
||||
h = nlp * inverse_exp(tC0(rV));
|
||||
}
|
||||
else h = inverse_exp(tC0(View));
|
||||
shift_view(-h);
|
||||
rotate_view(cspin(dir, 2, val));
|
||||
shift_view(h);
|
||||
}
|
||||
else if(history::on)
|
||||
history::lvspeed += (dir?1:-1) * val / 2;
|
||||
else if(GDIM == 3 && anyshiftclick)
|
||||
else if(GDIM == 3 && rshiftclick)
|
||||
shift_view(ctangent(dir, -val)), didsomething = true, playermoved = false; /* -val because shift reverses */
|
||||
#if CAP_CRYSTAL
|
||||
else if(rug::rug_control() && rug::in_crystal())
|
||||
|
Loading…
x
Reference in New Issue
Block a user