暫無描述
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.

GenerateBlocksAttribute.cs 308B

123456789101112131415
  1. using System;
  2. namespace UnityEditor.ShaderGraph
  3. {
  4. [AttributeUsage(AttributeTargets.Struct)]
  5. class GenerateBlocksAttribute : Attribute
  6. {
  7. internal string path { get; set; }
  8. public GenerateBlocksAttribute(string path = "")
  9. {
  10. this.path = path;
  11. }
  12. }
  13. }