Lots of work on WingTypes

This commit is contained in:
2026-03-25 02:32:26 -04:00
parent 03e61cd9a0
commit 6325b15cb7
10 changed files with 629 additions and 321 deletions

View File

@@ -62,7 +62,11 @@ bool FWingProperty::SetText(const FString &Value)
if (IsPinTypeProperty(Prop))
{
FEdGraphPinType PinType;
if (!UWingTypes::TextToType(Value, PinType)) return false;
UWingTypes::Requirements Req;
Req.BlueprintType = true;
Req.Blueprintable = false;
Req.AllowContainer = true;
if (!UWingTypes::TextToType(Value, PinType, Req)) return false;
Prop->SetValue_InContainer(Container, &PinType);
return true;
}