Arma Reforger Explorer
1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Toggle main menu visibility
Loading...
Searching...
No Matches
SCR_LifetimeComponent.c
Go to the documentation of this file.
1
[
ComponentEditorProps
(
category
:
"GameScripted"
, description:
""
)]
2
class
SCR_LifetimeComponentClass
:
ScriptComponentClass
3
{
4
}
5
7
class
SCR_LifetimeComponent :
ScriptComponent
8
{
9
[
Attribute
(defvalue:
"1"
)]
10
protected
float
m_fLifeTime
;
11
12
//------------------------------------------------------------------------------------------------
13
override
void
EOnFrame
(
IEntity
owner,
float
timeSlice)
14
{
15
if
(
m_fLifeTime
< 0)
16
{
17
SCR_EntityHelper
.DeleteEntityAndChildren(owner);
18
return
;
19
}
20
m_fLifeTime
-= timeSlice;
21
}
22
23
//------------------------------------------------------------------------------------------------
24
override
void
OnPostInit
(
IEntity
owner)
25
{
26
SetEventMask
(owner,
EntityEvent
.FRAME);
27
}
28
}
m_fLifeTime
float m_fLifeTime
The lifetime in seconds.
Definition
BaseDebrisSmallEntity.c:20
ComponentEditorProps
enum EAIGroupCombatMode ComponentEditorProps(category:"GameScripted/AI", description:"Component for utility AI system for groups")
Definition
SCR_AIGroupUtilityComponent.c:12
category
params category
Definition
SCR_VehicleDamageManagerComponent.c:302
GenericComponent::SetEventMask
proto external int SetEventMask(notnull IEntity owner, int mask)
IEntity
Definition
IEntity.c:13
SCR_EntityHelper
Definition
SCR_EntityHelper.c:2
SCR_LifetimeComponentClass
Definition
SCR_LifetimeComponent.c:3
ScriptComponentClass
Definition
ScriptComponentClass.c:8
ScriptComponent
Definition
ScriptComponent.c:24
ScriptComponent::EOnFrame
void EOnFrame(IEntity owner, float timeSlice)
Attribute
SCR_FieldOfViewSettings Attribute
Definition
SendGoalMessage.c:170
EntityEvent
EntityEvent
Various entity events.
Definition
EntityEvent.c:14
OnPostInit
@ OnPostInit
Definition
SndComponentCallbacks.c:15
scripts
Game
Components
SCR_LifetimeComponent.c
Generated by
1.17.0