| 645 | } |
| 646 | |
| 647 | bool UFlowNodeBase::GetDynamicTitleColor(FLinearColor& OutColor) const |
| 648 | { |
| 649 | // Legacy asset support for NodeStyle == EFlowNodeStyle::Custom |
| 650 | if (NodeDisplayStyle == FlowNodeStyle::Custom || NodeStyle == EFlowNodeStyle::Custom) |
| 651 | { |
| 652 | OutColor = NodeColor; |
| 653 | return true; |
| 654 | } |
| 655 | |
| 656 | return false; |
| 657 | } |
| 658 | |
| 659 | FText UFlowNodeBase::GetGeneratedDisplayName() const |
| 660 | { |