Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_AIWaypointState.c
Go to the documentation of this file.
1
5
6class SCR_AIWaypointState : Managed
7{
9 protected AIWaypoint m_Waypoint;
10
12 {
13 m_Utility = utility;
14 m_Waypoint = waypoint;
15 }
16
17
20 void OnSelected();
21
25 {
26 m_Utility.CancelActivitiesRelatedToWaypoint(m_Waypoint, doNotCompleteWaypoint: true);
27 }
28
32 {
33 m_Utility.CancelActivitiesRelatedToWaypoint(m_Waypoint, SCR_AIMoveActivity);
34 }
35
37 AIWaypoint GetWaypoint()
38 {
39 return m_Waypoint;
40 }
41}
SCR_AIGroupUtilityComponent m_Utility
void SCR_AIWaypointState(notnull SCR_AIGroupUtilityComponent utility, SCR_AIWaypoint waypoint)
AIWaypoint GetWaypoint()
Getter for the related waypoint.