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

Function GetOutputPin

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

Get an output pin for this node

Source from the content-addressed store, hash-verified

189
190 // Get an output pin for this node
191 inline Pin* GetOutputPin( int32_t pinIdx = 0 ) { EE_ASSERT( pinIdx >= 0 && pinIdx < m_outputPins.size() ); return &m_outputPins[pinIdx]; }
192
193 // Get an output pin for this node
194 inline Pin const* GetOutputPin( int32_t pinIdx = 0 ) const { EE_ASSERT( pinIdx >= 0 && pinIdx < m_outputPins.size() ); return &m_outputPins[pinIdx]; }

Callers 2

GetOutputValueTypeFunction · 0.85
HasOutputPinFunction · 0.85

Calls 2

GetOutputPinMethod · 0.80
sizeMethod · 0.45

Tested by

no test coverage detected