Files
ichni_Official/Packages/NB_FX/NBShaders2/Runtime/NBShaderFeatureTier.cs
SoulliesOfficial 40fa80cd70 NB_FX
2026-07-17 17:46:16 -04:00

14 lines
287 B
C#

namespace NBShader
{
/// <summary>
/// Runtime NBShader feature tiers, ordered from the smallest keyword budget to the full feature set.
/// </summary>
public enum NBShaderFeatureTier
{
Low = 0,
Medium = 1,
High = 2,
Ultra = 3
}
}