Called after ExecuteAllBlueprintLayers or ExecuteBlueprintLayer
Example
// Subscribe to event
void OnEnable()
{
tileWorldCreator.OnBlueprintLayersComplete += BuildMap;
}
// Unsubscribe event
void OnDisable()
{
tileWorldCreator.OnBlueprintLayersComplete -= BuildMap;
}
// Blueprint generation is complete we can now call ExecuteAllBuildLayers to build the map
void BuildMap(TileWorldCreator tileWorldCreator)
{
// Build the map, do not force a complete rebuild
tileWorldCreator.ExecuteAllBuildLayers(false);
}