Arma Reforger Explorer
1.1.0.42
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
|
Go to the source code of this file.
Data Structures | |
class | SCR_InteractableBoxComponentClass |
Functions | |
void | ToggleIsOnFire (ResourceName particle, vector offset) |
bool | IsDragging () |
string | GetActionName () |
string | GetActionDescription () |
string | GetFireActionDescription () |
string | GetFireActionName () |
bool | CanPerformDragAction () |
bool | CanPerformToggleFire () |
void | CancelDragAction () |
void | PerformDragAction (IEntity user) |
override void | EOnSimulate (IEntity owner, float timeSlice) |
private void | OnDeath () |
override void | EOnFrame (IEntity owner, float timeSlice) |
override void | OnPostInit (IEntity owner) |
Called on PostInit when all components are added. More... | |
override void | EOnInit (IEntity owner) |
void | SCR_InteractableBoxComponent (IEntityComponentSource src, IEntity ent, IEntity parent) |
Variables | |
SCR_InteractableBoxComponentClass | m_bIsDragging = false |
private bool | m_bIsOnFire = false |
private IEntity | m_Owner = null |
private IEntity | m_User = null |
private ParticleEffectEntity | m_Fire = null |
private Physics | m_Physics = null |
private float | m_Lifetime = 10.0 |
private bool | m_bIsDead = false |
void CancelDragAction | ( | ) |
Definition at line 142 of file InteractableBoxComponent.c.
bool CanPerformDragAction | ( | ) |
Definition at line 122 of file InteractableBoxComponent.c.
bool CanPerformToggleFire | ( | ) |
Definition at line 132 of file InteractableBoxComponent.c.
override void EOnFrame | ( | IEntity | owner, |
float | timeSlice | ||
) |
Definition at line 220 of file InteractableBoxComponent.c.
override void EOnSimulate | ( | IEntity | owner, |
float | timeSlice | ||
) |
Definition at line 173 of file InteractableBoxComponent.c.
string GetActionDescription | ( | ) |
Definition at line 80 of file InteractableBoxComponent.c.
string GetActionName | ( | ) |
Definition at line 66 of file InteractableBoxComponent.c.
string GetFireActionDescription | ( | ) |
Definition at line 94 of file InteractableBoxComponent.c.
string GetFireActionName | ( | ) |
Definition at line 108 of file InteractableBoxComponent.c.
bool IsDragging | ( | ) |
Definition at line 59 of file InteractableBoxComponent.c.
private void OnDeath | ( | ) |
Definition at line 204 of file InteractableBoxComponent.c.
void PerformDragAction | ( | IEntity | user | ) |
[in] | user |
Definition at line 151 of file InteractableBoxComponent.c.
void SCR_InteractableBoxComponent | ( | IEntityComponentSource | src, |
IEntity | ent, | ||
IEntity | parent | ||
) |
[in] | src | |
[in] | ent | |
[in] | parent |
Definition at line 253 of file InteractableBoxComponent.c.
void ToggleIsOnFire | ( | ResourceName | particle, |
vector | offset | ||
) |
[in] | particle | |
[in] | offset |
Definition at line 21 of file InteractableBoxComponent.c.
private bool m_bIsDead = false |
Definition at line 15 of file InteractableBoxComponent.c.
SCR_InteractableBoxComponentClass m_bIsDragging = false |
private bool m_bIsOnFire = false |
Definition at line 9 of file InteractableBoxComponent.c.
private ParticleEffectEntity m_Fire = null |
Definition at line 12 of file InteractableBoxComponent.c.
private float m_Lifetime = 10.0 |
Definition at line 14 of file InteractableBoxComponent.c.
private IEntity m_Owner = null |
Definition at line 10 of file InteractableBoxComponent.c.
private Physics m_Physics = null |
Definition at line 13 of file InteractableBoxComponent.c.
private IEntity m_User = null |
Definition at line 11 of file InteractableBoxComponent.c.