| 40 | #if WITH_EDITOR |
| 41 | FLOW_API bool IsInputPin() const { return bIsInputPin; } |
| 42 | FLOW_API bool IsArray() const { FLOW_ASSERT_ENUM_MAX(EFlowDataMultiType, 2); return MultiType == EFlowDataMultiType::Array; } |
| 43 | |
| 44 | /* Helper to get the Values property handle (implemented by subclasses or via type system). */ |
| 45 | FLOW_API virtual TSharedPtr<IPropertyHandle> GetValuesPropertyHandle() const PURE_VIRTUAL(GetValuesPropertyHandle, return nullptr;); |
no outgoing calls
no test coverage detected