Enormouse overhaul

This commit is contained in:
2026-04-04 01:45:25 -04:00
parent b1a2813f05
commit e9fff6599a
86 changed files with 1324 additions and 1225 deletions

View File

@@ -31,15 +31,15 @@ public:
virtual void Handle() override
{
WingFetcher F;
WingFetcher F(WingOut::Stdout);
UObject* Obj = F.Walk(Object).Cast<UObject>();
if (!Obj) return;
TArray<FWingProperty> Props = FWingProperty::GetDetailsMutable(Obj, CPF_Edit);
FWingProperty* P = WingUtils::FindOneWithExternalID(Property, Props, TEXT("Property"));
TArray<FWingProperty> Props = FWingProperty::GetDetails(Obj, CPF_Edit, true);
FWingProperty* P = WingUtils::FindOneWithExternalID(Property, Props, TEXT("Property"), WingOut::Stdout);
if (!P) return;
if (P->SetText(Value))
UWingServer::Print(TEXT("OK\n"));
if (P->SetText(Value, WingOut::Stdout))
WingOut::Stdout.Print(TEXT("OK\n"));
}
};