Arma Reforger Explorer  1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
BaseTriggerComponent.c
Go to the documentation of this file.
1 /*
2 ===========================================
3 Do not modify, this script is generated
4 ===========================================
5 */
6 
12 class BaseTriggerComponent: BaseProjectileComponent
13 {
14  proto external IEntity GetOwner();
15  proto external void OnUserTrigger(IEntity owner);
16  //Only used when overriding the instigator is necessary. E.g.: Player A shoots explosive of player B. The instigator needs to be overriden with player A.
17  proto external void OnUserTriggerOverrideInstigator(IEntity owner, Instigator instigator);
18  proto external bool WasTriggered();
19  proto external void SetLive();
21  proto external void GetProjectileEffects(typename projectileType, out notnull array<BaseProjectileEffect> outProjectileEffects);
22 
23  // callbacks
24 
29  event protected void EOnInit(IEntity owner);
36  event protected void EOnContact(IEntity owner, IEntity other, Contact contact);
37 }
38 
BaseTriggerComponent
Definition: BaseTriggerComponent.c:12
Instigator
Definition: Instigator.c:6