Files
WoodHorror/Library/PackageCache/com.unity.shadergraph@608f316e1f48/Editor/Generation/GraphCode.cs

13 lines
324 B
C#
Raw Normal View History

2025-06-20 11:37:30 +01:00
using System;
using System.Collections.Generic;
namespace UnityEditor.ShaderGraph.Internal
{
public struct GraphCode
{
public string code { get; internal set; }
public ShaderGraphRequirements requirements { get; internal set; }
public IEnumerable<AbstractShaderProperty> properties;
}
}