| 1173 | } |
| 1174 | |
| 1175 | void UFlowAsset::TriggerInputDirect(const FGuid& NodeGuid, const FName& PinName, const FConnectedPin& FromPin) |
| 1176 | { |
| 1177 | if (UFlowNode* Node = Nodes.FindRef(NodeGuid)) |
| 1178 | { |
| 1179 | if (!ActiveNodes.Contains(Node)) |
| 1180 | { |
| 1181 | ActiveNodes.Add(Node); |
| 1182 | RecordedNodes.Add(Node); |
| 1183 | } |
| 1184 | |
| 1185 | Node->TriggerInput(PinName); |
| 1186 | } |
| 1187 | } |
| 1188 | |
| 1189 | bool UFlowAsset::ShouldDeferTriggers() const |
| 1190 | { |
nothing calls this directly
no test coverage detected