rott/kf_sources/KFStoryGame/Classes/Story_SceneManager.uc
2026-07-14 20:27:09 +07:00

25 lines
618 B
Ucode

/*
--------------------------------------------------------------
Story_SceneManager
--------------------------------------------------------------
Custom SceneManager class for use in Killing Floor 'Story' maps.
Author : Alex Quick
--------------------------------------------------------------
*/
class Story_SceneManager extends SceneManager;
/* Matinee is broken in network play so just dont let the Scene start if we're on a server */
function Trigger( actor Other, Pawn EventInstigator )
{
if(Level.NetMode == NM_Standalone)
{
Super.Trigger(other,EventInstigator);
}
}