2
0
mirror of https://github.com/Laupetin/OpenAssetTools.git synced 2025-11-23 21:22:07 +00:00

The FinalizeZone step can now fail and the zone link will not ouput a fastfile if the FinalizeZone step fails.

This commit is contained in:
LJW-Dev
2025-11-01 17:25:14 +08:00
parent 81e0331252
commit 56186d1d80
8 changed files with 30 additions and 19 deletions

View File

@@ -73,9 +73,11 @@ namespace
return AssetCreationResult::Success(context.AddAsset(std::move(registration)));
}
void FinalizeZone(AssetCreationContext& context) override
bool FinalizeZone(AssetCreationContext& context) override
{
context.GetZoneAssetCreationState<MenuConversionZoneState>().FinalizeSupportingData();
return true;
}
private: