Documentation

Unity Engine


User Manual

Script Reference

Unity Engine


RunAfterAssemblyAttribute

Add this attribute to a callback method to mark that this callback must be run after any callbacks that are part of the specified assembly.
Read time 4 minutesLast updated 5 days ago

Definition

[AttributeUsage(AttributeTargets.Method, AllowMultiple = true)]public class RunAfterAssemblyAttribute : Attribute

Remarks

To define dependencies for a callback, use the following attributes:
When the callback is invoked, Unity generates a dependency graph and uses topological sorting to ensure that all dependencies are run in sequence based on their dependencies. If callbacks dependencies are not present in the project then the instruction will be ignored during the generation of the dependency graph.
Note: Defining callback dependencies is currently only supported by the AssetPostprocessor.OnPostprocessAllAssets(string[], string[], string[], string[], bool) callback.

Examples

using UnityEditor;using UnityEditor.Callbacks;using UnityEngine;// This example shows how to ensure that a callback is called after the Addressables assembly has been called.class MyPostprocessor : AssetPostprocessor{ [RunAfterAssembly("Unity.Addressables.Editor")] static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths) { Debug.Log("MyPostprocessor"); }}

Constructors

Constructor

Description

RunAfterAssemblyAttribute(System.String)Add this attribute to a callback method to mark that this callback must be run after any callbacks that are part of the specified assembly.

Properties

Property

Description

assemblyNameThe name of the assembly that should be run before this callback.

Inheritance

Inherited Members