Temp fix for Boss Camera glitching

This commit is contained in:
Josh 2017-10-22 15:27:08 -05:00 committed by GitHub
parent 6da6c6757f
commit 02eca33d23

View File

@ -605,15 +605,18 @@ simulated function CancelConnection()
function NotifyLevelUp(class<KFPerk> PerkClass, byte PerkLevel); function NotifyLevelUp(class<KFPerk> PerkClass, byte PerkLevel);
function ShowBossNameplate( KFInterface_MonsterBoss KFBoss, optional string PlayerName) function SetBossCamera( KFInterface_MonsterBoss Boss );
{
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 )
@ -1181,4 +1184,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
} }