Files
Cielonos/Assets/OtherPlugins/GraphicsCat/Modules/Common/Utils/URP/LightModeIds.cs
SoulliesOfficial d15957c719 更新
2025-12-17 04:19:38 -05:00

17 lines
517 B
C#

using System.Collections.Generic;
using UnityEngine.Rendering;
namespace GraphicsCat
{
public static class LightModeIds
{
public static readonly List<ShaderTagId> renderObjectsList = new List<ShaderTagId>()
{
new ShaderTagId("UniversalForward"),
new ShaderTagId("UniversalForwardOnly"),
new ShaderTagId("SRPDefaultUnlit")
};
public static readonly ShaderTagId[] renderObjectsArray = renderObjectsList.ToArray();
}
}