Working on handling custom event nodes

This commit is contained in:
2026-03-20 22:53:09 -04:00
parent 457c595081
commit af141a2369
12 changed files with 81 additions and 20 deletions

View File

@@ -41,7 +41,7 @@ UEdGraphNode* FWingGraphAction::Execute(const FVector2D &Location) const
TArray<FWingGraphAction*> FWingGraphActions::Search(const FString &Query, int32 MaxResults, bool Exact)
{
FString ExtQuery = FString::Printf(TEXT("*%s*"), *Query);
FString ExtQuery = FString::Printf(TEXT("*%s*"), *Query.Replace(TEXT(" "), TEXT("*")));
TArray<FWingGraphAction*> Results;
for (FWingGraphAction &Result : Actions)
{