Version: 2022.1
언어: 한국어

RunAfterAssemblyAttribute

class in UnityEditor.Callbacks

매뉴얼로 전환

설명

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.

To define dependencies for a callback, use the following attributes: RunAfterClassAttribute, RunBeforeClassAttribute RunAfterAssemblyAttribute, RunBeforeAssemblyAttribute RunAfterPackageAttribute, RunBeforePackageAttribute 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;
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"); } }

변수

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

생성자

RunAfterAssemblyAttributeAdd this attribute to a callback method to mark that this callback must be run after any callbacks that are part of the specified assembly.
Copyright © 2023 Unity Technologies
优美缔软件(上海)有限公司 版权所有
"Unity"、Unity 徽标及其他 Unity 商标是 Unity Technologies 或其附属机构在美国及其他地区的商标或注册商标。其他名称或品牌是其各自所有者的商标。
公安部备案号:
31010902002961