1
0
mirror of https://github.com/zenorogue/hyperrogue.git synced 2025-08-09 23:33:54 +00:00

rogueviz:: ads:: keep_ship_angle parameter

This commit is contained in:
Zeno Rogue 2025-06-22 16:01:46 +02:00
parent 3508ff4fd5
commit 039f1fba29
2 changed files with 3 additions and 1 deletions

View File

@ -217,7 +217,7 @@ bool ads_turn(int idelta) {
if(auto_rotate)
current.T = cspin(1, 0, tc) * current.T;
else if(!paused)
else if(!paused && !keep_ship_angle)
ang += tc / degree;
if(!paused) {

View File

@ -89,6 +89,8 @@ player_data pdata, ads_max_pdata, ads_tank_pdata, ds_max_pdata, ds_tank_pdata;
bool auto_angle = true;
bool keep_ship_angle = false;
ld rock_density = 0.25;
ld rock_max_rapidity = 1.5;