More progress on variables

This commit is contained in:
2026-03-31 03:50:06 -04:00
parent 9720fa9f8d
commit 93ce030fc0
13 changed files with 588 additions and 578 deletions

View File

@@ -476,6 +476,12 @@ TArray<UBlueprint*> WingUtils::GetAncestorBlueprints(UBlueprint *BP, bool Oldest
return Blueprints;
}
UObject *WingUtils::GetGeneratedCDO(UBlueprint *BP)
{
if (BP->GeneratedClass == nullptr) return nullptr;
return BP->GeneratedClass->GetDefaultObject();
}
// ============================================================
// Material helpers
// ============================================================