Revert "Temp fix for Boss Camera glitching"

This reverts commit 02eca33d23.
This commit is contained in:
Josh 2017-10-22 15:27:08 -05:00 committed by Forrest Keller
parent b3e3831db5
commit e2785dbde0

View File

@ -605,18 +605,15 @@ simulated function CancelConnection()
function NotifyLevelUp(class<KFPerk> PerkClass, byte PerkLevel); function NotifyLevelUp(class<KFPerk> PerkClass, byte PerkLevel);
function SetBossCamera( KFInterface_MonsterBoss Boss ); function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName)
{
function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName );
/*{
if( !bNamePlateShown ) // Dont make multiple bosses pop this up multiple times. if( !bNamePlateShown ) // Dont make multiple bosses pop this up multiple times.
{ {
bNamePlateShown = true; bNamePlateShown = true;
Super.ShowBossNameplate(KFBoss,PlayerName); Super.ShowBossNameplate(KFBoss,PlayerName);
SetTimer(8,false,'HideBossNameplate'); // MAKE sure it goes hidden. SetTimer(8,false,'HideBossNameplate'); // MAKE sure it goes hidden.
} }
}*/ }
function HideBossNameplate() function HideBossNameplate()
{ {
if( !bNamePlateHidden ) if( !bNamePlateHidden )
@ -1184,4 +1181,4 @@ defaultproperties
NVG_DOF_SharpRadius=2500.0 NVG_DOF_SharpRadius=2500.0
NVG_DOF_FocalRadius=3500.0 NVG_DOF_FocalRadius=3500.0
NVG_DOF_MaxNearBlurSize=0.25 NVG_DOF_MaxNearBlurSize=0.25
} }