MCPcopy Create free account
hub / github.com/BobbyAnguelov/Esoterica / HasInputPin

Function HasInputPin

Code/EngineTools/NodeGraph/NodeGraph_FlowGraph.h:154–154  ·  view source on GitHub ↗

Does an input pin exist with this ID

Source from the content-addressed store, hash-verified

152
153 // Does an input pin exist with this ID
154 inline bool HasInputPin( UUID const& pinID ) const { return GetInputPin( pinID ) != nullptr; }
155
156 // Get an input pin for this node
157 inline Pin* GetInputPin( int32_t pinIdx ) { EE_ASSERT( pinIdx >= 0 && pinIdx < m_inputPins.size() ); return &m_inputPins[pinIdx]; }

Callers 3

HasPinFunction · 0.85
IsInputPinFunction · 0.85
GetPinDirectionMethod · 0.85

Calls 1

GetInputPinFunction · 0.85

Tested by

no test coverage detected