docs.unity3d.com
Search Results for

    Show / Hide Table of Contents

    Class AnalyzeSystem

    Static system to manage Analyze functionality.

    Inheritance
    object
    AnalyzeSystem
    Inherited Members
    object.Equals(object)
    object.Equals(object, object)
    object.GetHashCode()
    object.GetType()
    object.MemberwiseClone()
    object.ReferenceEquals(object, object)
    object.ToString()
    Namespace: UnityEditor.AddressableAssets.Build
    Assembly: Unity.Addressables.Editor.dll
    Syntax
    [Serializable]
    public static class AnalyzeSystem

    Methods

    Name Description
    RegisterNewRule<TRule>()

    Method used to register any custom AnalyzeRules with the AnalyzeSystem. This replaces calling into the AnalyzeWindow directly to remove logic from the GUI. The recommended pattern is to create your rules like so:

    class MyRule : AnalyzeRule {}
    [InitializeOnLoad]
    class RegisterMyRule
    {
        static RegisterMyRule()
        {
            AnalyzeSystem.RegisterNewRule<MyRule>();
        }
    }
    In This Article
    Back to top
    Copyright © 2025 Unity Technologies — Trademarks and terms of use
    • Legal
    • Privacy Policy
    • Cookie Policy
    • Do Not Sell or Share My Personal Information
    • Your Privacy Choices (Cookie Settings)