mirror of
https://gitea.wildfiregames.com/0ad/0ad.git
synced 2026-07-09 04:45:41 +00:00
Don't allow rotation in atlas bird view
except for rotation around the y axis. This makes the behaviour consistent with the main game. Ref: #8931 Signed-off-by: Ralph Sennhauser <ralph.sennhauser@gmail.com>
This commit is contained in:
@@ -147,7 +147,7 @@ MESSAGEHANDLER(SmoothZoom)
|
||||
|
||||
MESSAGEHANDLER(RotateAround)
|
||||
{
|
||||
if (!g_Game || g_Game->GetView()->GetCinema()->IsPlaying())
|
||||
if (!g_Game || g_Game->GetView()->GetCinema()->IsPlaying() || g_BirdEyeView)
|
||||
return;
|
||||
|
||||
static CVector3D focusPos;
|
||||
|
||||
Reference in New Issue
Block a user