Prop Get2/Set2

This commit is contained in:
2026-04-03 11:42:40 -04:00
parent fe4a4d5646
commit e70bce0ede

View File

@@ -53,7 +53,7 @@ public:
for (const auto& Pair : Properties.Json->Values) for (const auto& Pair : Properties.Json->Values)
{ {
TSharedPtr<IPropertyHandle>* P = WingUtils::FindOneWithExternalID(Pair.Key, Handles, TEXT("Property")); TSharedPtr<IPropertyHandle>* P = WingUtils::FindOneWithExternalID(Pair.Key, Handles, TEXT("Property"));
if (P && WingPropHandle::SetJson(**P, Pair.Value)) SuccessCount++; if (WingPropHandle::SetJson(**P, Pair.Value)) SuccessCount++;
} }
UWingServer::Printf(TEXT("Set %d/%d properties.\n"), SuccessCount, Properties.Json->Values.Num()); UWingServer::Printf(TEXT("Set %d/%d properties.\n"), SuccessCount, Properties.Json->Values.Num());