mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-13 18:17:49 -04:00
Real camera fixes
Corrects popping issues in Kemo but doesn't screw up Teledahn at the same time... Magical special casing :(
This commit is contained in:
@ -1685,13 +1685,14 @@ void plVirtualCam1::PopCamera(plCameraModifier1* pCam)
|
||||
if (fCameraStack.size() <= 1)
|
||||
return;
|
||||
|
||||
// Crazy Special Casing Turd: [based on some Cyan crap]
|
||||
// is it the current camera AND the same camera we would otherwise switch to?
|
||||
if (pCam==GetCurrentStackCamera() && pCam == fCameraStack[fCameraStack.size() - 2])
|
||||
// if so, pop off the dupe if we're going to the age default... otherwise, go crazy.
|
||||
if (fCameraStack.size() > 2 && pCam == GetCurrentStackCamera())
|
||||
{
|
||||
// pop but don't transition to a new camera
|
||||
// or do anything else:
|
||||
fCameraStack.pop_back();
|
||||
return;
|
||||
int theDupe = fCameraStack.size() - 1;
|
||||
if (pCam == fCameraStack[theDupe] && theDupe == 2)
|
||||
fCameraStack.pop_back();
|
||||
}
|
||||
|
||||
// are we mouse-looking?
|
||||
|
Reference in New Issue
Block a user