暫無描述
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

TitleAttribute.cs 456B

123456789101112
  1. using System;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. [GenerationAPI]
  5. [AttributeUsage(AttributeTargets.Field | AttributeTargets.Property | AttributeTargets.Method | AttributeTargets.Class | AttributeTargets.Event | AttributeTargets.Parameter | AttributeTargets.ReturnValue)]
  6. class TitleAttribute : ContextFilterableAttribute
  7. {
  8. public string[] title;
  9. public TitleAttribute(params string[] title) { this.title = title; }
  10. }
  11. }