arenos-nexus/Arenos Nexus/Library/PackageCache/com.unity.shadergraph@940512a5d7e1/Editor/Generation/IHasMetaData.cs

12 lines
221 B
C#
Raw Normal View History

2025-09-25 22:01:28 +02:00
using UnityEngine;
namespace UnityEditor.ShaderGraph
{
[GenerationAPI]
interface IHasMetadata
{
string identifier { get; }
ScriptableObject GetMetadataObject(GraphDataReadOnly graph);
}
}