PostProcessBuildAttribute
Add this attribute to a method to get a notification just after building the player.
Read time 3 minutesLast updated 6 days ago
Definition
- Type: Class
- Namespace: UnityEditor.Callbacks
- Assembly: UnityEditor.CoreModule
- Inherits from: CallbackOrderAttribute
public sealed class PostProcessBuildAttribute : CallbackOrderAttribute
Remarks
// C# example:using UnityEngine;using UnityEditor;using UnityEditor.Callbacks;public class MyBuildPostprocessor { [PostProcessBuildAttribute(1)] public static void OnPostprocessBuild(BuildTarget target, string pathToBuiltProject) { Debug.Log( pathToBuiltProject ); }}
PostProcessBuildAttribute has an option to provide an order index in the callback, starting at 0. This is useful if you have more than one PostProcessBuildAttribute callback, and you would like them to be called in a certain order. Callbacks are called in order, starting at zero.
Additional Resources: IPostprocessBuildWithContext