Files
XRLib/Assets/Plugins/Easy performant outline/Scripts/SerializedPassInfoAttribute.cs

16 lines
365 B
C#
Raw Normal View History

2025-08-11 18:30:13 +09:00
using System;
namespace EPOOutline
{
public class SerializedPassInfoAttribute : Attribute
{
public readonly string Title;
public readonly string ShadersFolder;
public SerializedPassInfoAttribute(string title, string shadersFolder)
{
Title = title;
ShadersFolder = shadersFolder;
}
}
}