study/first_study/Library/PackageCache/com.unity.render-pipelines.universal@d10049dfa479/Runtime/SampleCount.cs
jh04010421 739d49f1a0 Unity | 2026.01.20
수업 실습 파일
2026-01-20 11:01:57 +09:00

25 lines
484 B
C#

namespace UnityEngine.Rendering.Universal
{
// Should be made obsolete
/// <summary>
/// Options for Sample Count.
/// </summary>
public enum SampleCount
{
/// <summary>
/// Use this for 1 sample.
/// </summary>
One = 1,
/// <summary>
/// Use this for 2 samples.
/// </summary>
Two = 2,
/// <summary>
/// Use this for 4 samples.
/// </summary>
Four = 4,
}
}