Class BuildCallbacks
Basic implementation of IDependencyCallback, IPackingCallback, IWritingCallback, and IScriptsCallback. Uses Func implementation for callbacks. IDependencyCallback, IPackingCallback IWritingCallback, and IScriptsCallback
Inherited Members
Namespace: UnityEditor.Build.Pipeline
Assembly: solution.dll
Syntax
public class BuildCallbacks : IDependencyCallback, IPackingCallback, IWritingCallback, IScriptsCallback, IContextObject
Properties
| Name | Description |
|---|---|
| PostDependencyCallback | Func delegate for the callback after dependency calculation has occurred. |
| PostPackingCallback | Func delegate for the callback after packing has occurred. |
| PostScriptsCallbacks | Func delegate for the callback after scripts have been compiled. |
| PostWritingCallback | Func delegate for the callback after writing content has occurred. |
Methods
| Name | Description |
|---|---|
| PostDependency(IBuildParameters, IDependencyData) | Processes all the callbacks after dependency calculation step. |
| PostPacking(IBuildParameters, IDependencyData, IWriteData) | Processes all the callbacks after packing step. |
| PostScripts(IBuildParameters, IBuildResults) | Processes all the callbacks after script building step. |
| PostWriting(IBuildParameters, IDependencyData, IWriteData, IBuildResults) | Processes all the callbacks after writing step. |