Class BuildScriptPackedMode.PackedModeSchemaDriven
Schema-driven build script used by BuildScriptPackedMode. Forwards selected hooks to the outer packed script so subclasses can override behavior while the build pipeline keeps using this instance.
Inheritance
Implements
Inherited Members
Namespace: UnityEditor.AddressableAssets.Build.DataBuilders
Assembly: Unity.Addressables.Editor.dll
Syntax
public class BuildScriptPackedMode.PackedModeSchemaDriven : BuildScriptSchemaDriven, IDataBuilder
Properties
| Name | Description |
|---|---|
| Name | The descriptive name used in the UI. |
Methods
| Name | Description |
|---|---|
| BuildDataImplementation<TResult>(AddressablesDataBuilderInput) | The implementation of BuildData<TResult>(AddressablesDataBuilderInput). That is the public entry point, this is the home for child class overrides. |
| ClearContentUpdateNotifications(List<AddressableAssetGroup>) | Clears content update notifications from teh groups window |
| ConstructAssetBundleName(AddressableAssetGroup, BundledAssetGroupSchema, BundleDetails, string) | Routes bundle naming to ConstructAssetBundleName(AddressableAssetGroup, BundledAssetGroupSchema, BundleDetails, string) so overrides on the packed script run from ConstructOutputName(AddressableAssetGroup, AddressableAssetGroupSchema, BundleDetails, string) during the build. |
| CopyAndRegisterContentState(string, string, AddressablesDataBuilderInput, AddressablesPlayerBuildResult) | Copies the content state binary file from the temp directory to its final location and registers it in the file registry and build results. |
| CreateSchemaBuilders() | Creates and returns the schema builders used to process group schemas during the build. Override this method to provide custom schema builders. |
| DisplayBuildReport() | Displays the Addressables Report window |
| DoBuild<TResult>(AddressablesDataBuilderInput, AddressableAssetsBuildContext) | The method that does the actual building after all the groups have been processed. |
| NotifyUserAboutBuildReport() | Notifies the user about the existence of the Addressables Report |
| ProcessAllGroups(AddressableAssetsBuildContext) | Loops over each group, after doing some data checking. |
| ProcessBundledAssetSchema(BundledAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext) | The processing of the bundled asset schema. This is where the bundle(s) for a given group are actually setup. |
| ProcessGroup(AddressableAssetGroup, AddressableAssetsBuildContext) | Build processing of an individual group. |
| ProcessGroupSchema(AddressableAssetGroupSchema, AddressableAssetGroup, AddressableAssetsBuildContext) | Called per group per schema to evaluate that schema. This can be an easy entry point for implementing the build aspects surrounding a custom schema. Note, you should not rely on schemas getting called in a specific order. |