示例#1
0
 public void Invalidate()
 {
     m_nodeId     = -1;
     m_portId     = -1;
     m_typeLocked = false;
     m_status     = WireStatus.Default;
 }
示例#2
0
 public WireReference(int nodeId, int portId, WirePortDataType dataType, bool typeLocked)
 {
     m_portId     = portId;
     m_nodeId     = nodeId;
     m_dataType   = dataType;
     m_typeLocked = typeLocked;
     m_status     = WireStatus.Default;
 }
示例#3
0
 public WireReference()
 {
     m_nodeId     = -1;
     m_portId     = -1;
     m_dataType   = WirePortDataType.FLOAT;
     m_typeLocked = false;
     m_status     = WireStatus.Default;
 }