DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено
BleedingSourceZone.c
См. документацию.
2{
4 int m_Bit;
7 string m_Bone;
12
13 void BleedingSourceZone(string selection_name, int bit, vector offset, vector orientation, string bone, int max_time, float flow_modifier, string particle_name)
14 {
15 m_FireSelectionName = selection_name;
16 m_Bit = bit;
17 m_EmitterOffset = offset;
18 m_EmitterOrientation = orientation;
19 m_Bone = bone;
20 m_FlowModifier = flow_modifier;
21 m_MaxTime = max_time;
22 m_ParticleName = particle_name;
23 }
24
25 //which inv location is associated(is covering) with this bleeding source ?
26 void SetInvLocation(int inv_slot)
27 {
28 m_InventorySlotLocation = inv_slot;
29 }
30
32 {
34 }
35
37 {
38
39 }
40
42 {
44 }
45
47 {
48 return m_MaxTime;
49 }
50
52 {
53 return m_ParticleName;
54 }
55
56 int GetBit()
57 {
58 return m_Bit;
59 }
60
62 {
63 return m_FlowModifier;
64 }
65
70
72 {
73 return m_EmitterOffset;
74 }
75
76 string GetBoneName()
77 {
78 return m_Bone;
79 }
80
81
82}
vector GetOrientation()
Определения BleedingSourceZone.c:66
int GetBit()
Определения BleedingSourceZone.c:56
vector m_EmitterOffset
Определения BleedingSourceZone.c:5
string m_FireSelectionName
Определения BleedingSourceZone.c:3
int m_InventorySlotLocation
Определения BleedingSourceZone.c:11
string GetBoneName()
Определения BleedingSourceZone.c:76
void ~BleedingSourceZone()
Определения BleedingSourceZone.c:36
string GetParticleName()
Определения BleedingSourceZone.c:51
int GetInvLocation()
Определения BleedingSourceZone.c:31
string m_ParticleName
Определения BleedingSourceZone.c:10
float m_FlowModifier
Определения BleedingSourceZone.c:8
void BleedingSourceZone(string selection_name, int bit, vector offset, vector orientation, string bone, int max_time, float flow_modifier, string particle_name)
Определения BleedingSourceZone.c:13
string GetSelectionName()
Определения BleedingSourceZone.c:41
int m_MaxTime
Определения BleedingSourceZone.c:9
string m_Bone
Определения BleedingSourceZone.c:7
vector GetOffset()
Определения BleedingSourceZone.c:71
int GetMaxTime()
Определения BleedingSourceZone.c:46
void SetInvLocation(int inv_slot)
Определения BleedingSourceZone.c:26
int m_Bit
Определения BleedingSourceZone.c:4
vector m_EmitterOrientation
Определения BleedingSourceZone.c:6
float GetFlowModifier()
Определения BleedingSourceZone.c:61
Определения EnConvert.c:106