docs.unity.cn
    Show / Hide Table of Contents

    Method RegisterNewRule

    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>();
          }
      }
    Declaration
    public static void RegisterNewRule<TRule>()
        where TRule : AnalyzeRule, new()
    Type Parameters
    Name Description
    TRule

    The rule type.

    Back to top Copyright © 2021 Unity Technologies
    Generated by DocFX
    on Thursday, December 2, 2021
    Terms of use