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

ShaderSubGraphMetadata.cs 203B

12345678910
  1. using System.Collections.Generic;
  2. using UnityEngine;
  3. namespace UnityEditor.ShaderGraph
  4. {
  5. class ShaderSubGraphMetadata : ScriptableObject
  6. {
  7. public List<Object> assetDependencies;
  8. }
  9. }