| 135 | |
| 136 | #if WITH_EDITOR |
| 137 | FEdGraphPinType 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 | |
| 153 | void FFlowPin::ConfigureFromEdGraphPin(const FEdGraphPinType& EdGraphPinType) |
| 154 | { |
no test coverage detected