説明なし
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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. }