2024-09-20 20:30:10 +02:00

12 lines
221 B
C#

using UnityEngine;
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
interface IHasMetadata
{
string identifier { get; }
ScriptableObject GetMetadataObject(GraphDataReadOnly graph);
}
}