MCPcopy Create free account
hub / github.com/PCGEx/PCGExtendedToolkit / GetInOut

Method GetInOut

Source/PCGExtendedToolkit/Private/Data/PCGExPointIO.cpp:106–121  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

104 }
105
106 const UPCGPointData* FPointIO::GetInOut(ESource& OutSource) const
107 {
108 if (In)
109 {
110 OutSource = ESource::In;
111 return In;
112 }
113
114 if (Out)
115 {
116 OutSource = ESource::Out;
117 return Out;
118 }
119
120 return nullptr;
121 }
122
123 bool FPointIO::GetSource(const UPCGData* InData, ESource& OutSource) const
124 {

Callers 3

TryGetTypeAndSourceFunction · 0.80
CreateKeyMethod · 0.80
ProjectFlatFunction · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected