Arma Reforger Explorer 1.7.0.54
Arma Reforger Code Explorer by Zeroy - Thanks to MisterOutofTime
Loading...
Searching...
No Matches
Node.c
Go to the documentation of this file.
1/*
2===========================================
3Do not modify, this script is generated
4===========================================
5*/
6
11
13{
14 protected static ref TStringArray m_aEmptyVars = {};
15
16 proto external int GetNodeID();
17 // Script interface
18 proto external typename GetVariableType(bool inputPort, string name);
19 proto bool GetVariableIn(string name, out void val);
20 proto void SetVariableOut(string name, void val);
21 proto void ClearVariable(string name);
22 proto void GetCallstackStr(out string val);
23 proto void GetParentTreeName(out string val);
24
25 // callbacks
26
27 event protected TStringArray GetVariablesIn() { return m_aEmptyVars; };
28 event protected TStringArray GetVariablesOut() { return m_aEmptyVars; };
29 static event protected bool VisibleInPalette();
30 static event protected string GetOnHoverDescription() { return "Node: Base behavior node"; };
31 static event protected bool CanReturnRunning();
32}
33
Definition Node.c:13
proto void SetVariableOut(string name, void val)
TStringArray GetVariablesIn()
Definition Node.c:27
static ref TStringArray m_aEmptyVars
Definition Node.c:14
proto bool GetVariableIn(string name, out void val)
proto void GetParentTreeName(out string val)
bool VisibleInPalette()
proto external GetVariableType(bool inputPort, string name)
proto void ClearVariable(string name)
proto void GetCallstackStr(out string val)
proto external int GetNodeID()
bool CanReturnRunning()
string GetOnHoverDescription()
Definition Node.c:30
TStringArray GetVariablesOut()
Definition Node.c:28
array< string > TStringArray
Definition Types.c:385