Beispiel #1
0
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, Vector3 value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputVec3);
 }
Beispiel #2
0
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, string value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputString);
 }
Beispiel #3
0
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, bool value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputBool);
 }
Beispiel #4
0
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, EntityId value)
 {
     node.ActivateOutput(portIndex, value.Value, Native.FlowNodeInterop.ActivateOutputEntityId);
 }