Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
SCR_AIDecoTestIsReloading.c
Go to the documentation of this file.
2{
3 SCR_CharacterControllerComponent m_CharacterController;
4
5 protected override bool TestFunction(AIAgent agent, IEntity controlled)
6 {
7 IEntity entity = agent.GetControlledEntity();
8 if (!entity)
9 return false;
10
11 if (!m_CharacterController)
12 {
14 if (!m_CharacterController)
15 return false;
16 }
17
18 return m_CharacterController.IsReloading();
19 }
20};
proto external Managed FindComponent(typename typeName)
override bool TestFunction(AIAgent agent, IEntity controlled)