Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames

KFStoryGame.Story_SceneManager


00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
/*
	--------------------------------------------------------------
	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);
	}
}

defaultproperties
{
}

Overview Package Class Source Class tree Glossary
previous class      next class frames      no frames
Class file time: Fri 13-10-2023 03:17:28.000 - Creation time: Fri 13-10-2023 03:19:09.011 - Created with UnCodeX