Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_Tutorial_Seizing_DisassembleBunker.c
Go to the documentation of this file.
1[EntityEditorProps(insertable: false)]
5
6//------------------------------------------------------------------------------------------------
8{
9 protected IEntity m_Entity;
10 //------------------------------------------------------------------------------------------------
11 override protected void Setup()
12 {
13 m_Entity = GetGame().GetWorld().FindEntityByName("SEIZING_Bunker");
14 if (m_Entity)
15 RegisterWaypoint(m_Entity, "", "DISASSEMBLY");
16 }
17
18 //------------------------------------------------------------------------------------------------
19 override protected bool GetIsFinished()
20 {
21 return !m_Entity;
22 }
23};
ArmaReforgerScripted GetGame()
Definition game.c:1398
enum SCR_ECompassType EntityEditorProps(category:"GameScripted/Gadgets", description:"Compass", color:"0 0 255 255")
Prefab data class for compass component.
void IEntity(IEntitySource src, IEntity parent)
protected script Constructor
SCR_Waypoint RegisterWaypoint(string entityName, string title=string.Empty, string icon="MISC")