Method ProcessBundledAssetSchema
ProcessBundledAssetSchema(BundledAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext)
Extension point for bundled-asset processing. Called by ProcessBundledAssetSchema(BundledAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext) when the build pipeline runs on a BuildScriptPackedMode.PackedModeSchemaDriven instance. The default implementation runs the standard ProcessBundledAssetSchema(BundledAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext) logic without recursion.
Declaration
protected virtual string ProcessBundledAssetSchema(BundledAssetGroupSchema schema, AddressableAssetGroup assetGroup, AddressableAssetsBuildContext aaContext)
Parameters
| Type | Name | Description |
|---|---|---|
| BundledAssetGroupSchema | schema | Bundled asset schema for the group. |
| AddressableAssetGroup | assetGroup | Group being processed. |
| AddressableAssetsBuildContext | aaContext | Build context. |
Returns
| Type | Description |
|---|---|
| string | Error message if processing failed; otherwise empty. |
Remarks
Use base or InvokeBaseProcessBundledAssetSchema(BundledAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext) from overrides to invoke the standard logic without re-entrancy.