Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_PostGameGameModeStateComponent.c
Go to the documentation of this file.
1[ComponentEditorProps(category: "GameScripted/GameMode/Components", description: "Game Mode component responsible for adding a 'post-game' period to the game mode.")]
5
7class SCR_PostGameGameModeStateComponent : SCR_BaseGameModeStateComponent
8{
9 [Attribute("1", uiwidget: UIWidgets.CheckBox, "Disables player controls in this state if checked.", category: "Game Mode")]
10 protected bool m_bDisableControls;
11
12 //------------------------------------------------------------------------------------------------
14 override bool GetAllowControls()
15 {
17 return false;
18
19 return true;
20 }
21
22 //------------------------------------------------------------------------------------------------
25 {
26 return SCR_EGameModeState.POSTGAME;
27 }
28}
enum EAIGroupCombatMode ComponentEditorProps(category:"GameScripted/AI", description:"Component for utility AI system for groups")
SCR_EGameModeState GetAffiliatedState()
Called on the authority when created to assign state this component belongs to.
SCR_BaseGameModeStateComponentClass SCR_BaseGameModeComponentClass GetAllowControls()
Base component for handling game mode states.
SCR_EGameModeState
SCR_FieldOfViewSettings Attribute