Version: 2021.2
LanguageEnglish
  • C#

RunBeforeClassAttribute Constructor

Suggest a change

Success!

Thank you for helping us improve the quality of Unity Documentation. Although we cannot accept all submissions, we do read each suggested change from our users and will make updates where applicable.

Close

Submission failed

For some reason your suggested change could not be submitted. Please <a>try again</a> in a few minutes. And thank you for taking the time to help us improve the quality of Unity Documentation.

Close

Cancel

Declaration

public RunBeforeClassAttribute(Type type);

Declaration

public RunBeforeClassAttribute(string assemblyQualifiedName);

Parameters

type The class type that should be run after this callback.
assemblyQualifiedName The assembly-qualified name of the class type that should be run after this callback. This dependency attribute will be ignored when the name can not be resolved, such as if the class is not present in the current project.

Description

Add this attribute to a callback method to mark that this callback must be run before any callbacks that are part of the specified class.

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 callback.

using UnityEditor;
using UnityEditor.Callbacks;

class RunFirst : AssetPostprocessor { [RunBeforeClass(typeof(RunNext))] static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths) { } }

class RunNext : AssetPostprocessor { static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths) { } }

class RunLast : AssetPostprocessor { [RunAfterClass(typeof(RunNext))] static void OnPostprocessAllAssets(string[] importedAssets, string[] deletedAssets, string[] movedAssets, string[] movedFromAssetPaths) { } }