Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
attributes.c
Go to the documentation of this file.
1
2class CinematicTrackAttribute: UniqueAttribute
3{
4 string m_Name; //<! Custom track name if you don't want to use class name
5 string m_Description; //<! Description of usage
6
7 void CinematicTrackAttribute(string name = "", string description = "")
8 {
9 m_Name = name;
10 m_Description = description;
11 }
12}
13
15{
16 string m_Name; //<! Custom name if you don't want to use name of the method
17
18 void CinematicEventAttribute(string name = "")
19 {
20 m_Name = name;
21 }
22}
23
24
25class BTNodeAttribute: UniqueAttribute
26{
27 bool m_bUpdateWhileRunning;
28
29 void BTNodeAttribute(bool bUpdateWhileRunning = false)
30 {
31 m_bUpdateWhileRunning = bUpdateWhileRunning;
32 }
33}
34
35class BTNodeInAttribute: BTNodeAttribute
36{
37}
38
39class BTNodeOutAttribute: BTNodeAttribute
40{
41}
CinematicTrackAttribute m_Name
void CinematicEventAttribute(string name="")
Definition attributes.c:18