Rasagar/Library/PackageCache/com.unity.shadergraph/Editor/Generation/IHasMetaData.cs

12 lines
221 B
C#
Raw Normal View History

2024-08-26 13:07:20 -07:00
using UnityEngine;
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
interface IHasMetadata
{
string identifier { get; }
ScriptableObject GetMetadataObject(GraphDataReadOnly graph);
}
}