res-avatar-unity/Assets/_PoiyomiShaders/Scripts/Editor/ModularShaderSystem/Scriptables/ModuleTemplate.cs
2023-07-15 19:51:23 -07:00

19 lines
463 B
C#
Executable file

using System;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.Serialization;
namespace Poiyomi.ModularShaderSystem
{
[Serializable]
public class ModuleTemplate
{
public TemplateAsset Template;
[FormerlySerializedAs("Keyword")] public List<string> Keywords;
[FormerlySerializedAs("IsCGOnly")] public bool NeedsVariant;
public int Queue = 100;
}
}