コード例 #1
0
ファイル: FlowGraphNode.cs プロジェクト: iniside/CryCIL
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, Vector3 value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputVec3);
 }
コード例 #2
0
ファイル: FlowGraphNode.cs プロジェクト: iniside/CryCIL
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, string value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputString);
 }
コード例 #3
0
ファイル: FlowGraphNode.cs プロジェクト: iniside/CryCIL
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, bool value)
 {
     node.ActivateOutput(portIndex, value, Native.FlowNodeInterop.ActivateOutputBool);
 }
コード例 #4
0
ファイル: FlowGraphNode.cs プロジェクト: iniside/CryCIL
 internal static void ActivateOutput(FlowGraphNode node, int portIndex, EntityId value)
 {
     node.ActivateOutput(portIndex, value.Value, Native.FlowNodeInterop.ActivateOutputEntityId);
 }