forked from Mirrorlandia_minetest/minetest
Change sign of pitch angle in debug menu (#8438)
Co-Authored-By: ClobberXD <ClobberXD@gmail.com>
This commit is contained in:
parent
4f7674d448
commit
d111865890
@ -128,7 +128,7 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
|
||||
<< ", " << (player_position.Z / BS)
|
||||
<< "), yaw: " << (wrapDegrees_0_360(cam.camera_yaw)) << "° "
|
||||
<< yawToDirectionString(cam.camera_yaw)
|
||||
<< ", pitch: " << (wrapDegrees_180(cam.camera_pitch)) << "°"
|
||||
<< ", pitch: " << (-wrapDegrees_180(cam.camera_pitch)) << "°"
|
||||
<< ", seed: " << ((u64)client->getMapSeed());
|
||||
|
||||
if (pointed_old.type == POINTEDTHING_NODE) {
|
||||
|
Loading…
Reference in New Issue
Block a user