We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8db965 commit 90e819fCopy full SHA for 90e819f
GeneralsMD/Code/GameEngineDevice/Source/W3DDevice/GameClient/W3DView.cpp
@@ -502,7 +502,8 @@ void W3DView::calcCameraConstraints()
502
center.x -= bottom.x;
503
center.y -= bottom.y;
504
505
- Real offset = center.length();
+ // TheSuperHackers @bugfix Mauller 22/10/2025 Halve the camera offset to allow the camera to move closer to the map edges
506
+ Real offset = center.length() * 0.5f;
507
508
if (TheGlobalData->m_debugAI) {
509
offset = -1000; // push out the constraints so we can look at staging areas.
0 commit comments