Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_CapturePointAreaMeshComponent.c
Go to the documentation of this file.
1[ComponentEditorProps(category: "GameScripted/Area Mesh", description: "")]
5
6class SCR_CapturePointAreaMeshComponent : SCR_BaseAreaMeshComponent
7{
9
10 //------------------------------------------------------------------------------------------------
11 override float GetRadius()
12 {
13 return m_SeizingComponent.GetRadius();
14 }
15
16 //------------------------------------------------------------------------------------------------
17 override void EOnInit(IEntity owner)
18 {
20
21 // This should only help with radius setup, do not show in play mode.
22 if (GetGame().InPlayMode())
23 return;
24
26 {
27 Debug.Error2("SCR_CapturePointAreaMeshComponent", "SCR_SeizingComponent not found on owner entity!");
28 return;
29 }
30
32 }
33}
ArmaReforgerScripted GetGame()
Definition game.c:1398
enum EAIGroupCombatMode ComponentEditorProps(category:"GameScripted/AI", description:"Component for utility AI system for groups")
void GenerateAreaMesh()
Generate area mesh based on its settings.
SCR_CapturePointAreaMeshComponentClass m_SeizingComponent
Definition Debug.c:13
IEntity GetOwner()
Owner entity of the fuel tank.
override void EOnInit(IEntity owner)