- reverting pull request #2361 - apparently pull request #2364 changed some behaviour and these two do not play nice together. One or the other unfortunately has to be rolled back to allow GZDoom to build properly again.
Revert "Restored r_orthographic behavior." This reverts commit26908f5bc5. Revert "Changed all of the isometric functionality to mapinfo and playerinfo variables. Retained function of most of the CVars." This reverts commitdc897eacc0. Revert "Adding isometric camera mode with orthographic projection to current state of master branch of GZDoom." This reverts commitd2c2c93cf1.
This commit is contained in:
parent
26908f5bc5
commit
af08413e10
17 changed files with 5 additions and 186 deletions
|
|
@ -1803,8 +1803,6 @@ void FLevelLocals::Init()
|
|||
flags3 = 0;
|
||||
ImpactDecalCount = 0;
|
||||
frozenstate = 0;
|
||||
isocam_pitch = 30.f;
|
||||
iso_dist = 300.f;
|
||||
|
||||
info = FindLevelInfo (MapName.GetChars());
|
||||
|
||||
|
|
@ -1835,12 +1833,6 @@ void FLevelLocals::Init()
|
|||
if (info->gravity == DBL_MAX) gravity = 0;
|
||||
else gravity = info->gravity * 35/TICRATE;
|
||||
}
|
||||
if (info->isocam_pitch < 0.f) isocam_pitch = 0.f;
|
||||
else if (info->isocam_pitch > 89.f) isocam_pitch = 89.f;
|
||||
else isocam_pitch = info->isocam_pitch;
|
||||
if (info->iso_dist < 1.f) iso_dist = 1.f;
|
||||
if (info->iso_dist > 1000.f) iso_dist = 1000.f;
|
||||
else iso_dist = info->iso_dist;
|
||||
if (info->aircontrol != 0.f)
|
||||
{
|
||||
aircontrol = info->aircontrol;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue