MCPcopy Create free account
hub / github.com/MothCocoon/FlowGraph / BuildEdGraphPinType

Method BuildEdGraphPinType

Source/Flow/Private/Nodes/FlowPin.cpp:137–151  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

135
136#if WITH_EDITOR
137FEdGraphPinType FFlowPin::BuildEdGraphPinType() const
138{
139 check(!PinTypeName.Name.IsNone());
140
141 FEdGraphPinType EdGraphPinType;
142 EdGraphPinType.PinCategory = PinTypeName.Name;
143
144 // TODO (gtaylor) possible future extension for types, to allow sub categories
145 EdGraphPinType.PinSubCategory = NAME_None;
146
147 EdGraphPinType.PinSubCategoryObject = PinSubCategoryObject;
148 EdGraphPinType.ContainerType = ContainerType;
149
150 return EdGraphPinType;
151}
152
153void FFlowPin::ConfigureFromEdGraphPin(const FEdGraphPinType& EdGraphPinType)
154{

Callers 2

CreateInputPinMethod · 0.80
CreateOutputPinMethod · 0.80

Calls 1

IsNoneMethod · 0.80

Tested by

no test coverage detected