暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ReloadGroupAttribute.cs 497B

123456789101112131415
  1. using System;
  2. namespace UnityEngine.Rendering
  3. {
  4. /// <summary>
  5. /// Attribute specifying that it contains element that should be reloaded.
  6. /// If the instance of the class is null, the system will try to recreate
  7. /// it with the default constructor.
  8. /// Be sure classes using it have default constructor!
  9. /// </summary>
  10. /// <seealso cref="ReloadAttribute"/>
  11. [AttributeUsage(AttributeTargets.Class)]
  12. public sealed class ReloadGroupAttribute : Attribute
  13. { }
  14. }