스텐실(Stencil) Comparison, Operation Enum 표
Unity2019. 2. 7. 09:06
Unity Stencil에서 사용하는 Enum에 해당하는 값들이 메뉴얼에 적혀 있지 않아 찾아서 기록해 둔다.
Comparison Functions
- 0 - Disabled (Depth와 Stencil 테스트를 안함)
- 1 - Never
- 2 - Less
- 3 - Equal
- 4 - LessEqual
- 5 - Greater
- 6 - NotEqual
- 7 - GreaterEqual
- 8 - Always (UI Shader의 기본값, 이 이상의 값은 Always로 처리된다고 한다.)
Stencil Operations
- 0 - Keep
- 1 - Zero
- 2 - Replace
- 3 - IncrementSaturate
- 4 - DecrementSaturate
- 5 - Invert
- 6 - IncrementWrap
- 7 - DecrementWrap
출처 : https://forum.unity.com/threads/stencil-op-comparison-values.362425
'Unity' 카테고리의 다른 글
Local Identifier In File 값 얻어오기 (1) | 2020.10.08 |
---|---|
Unity Editor에서 PlayerPrefs 내용 지우는 메뉴 추가 (0) | 2019.01.23 |
Catmull Rom C# Code (0) | 2019.01.10 |
Mac에서 Script Editor로 Visual Studio Code 사용하기 (0) | 2017.03.20 |
Android Studio(Gradle)에서 Android Plugin 제작하기 (0) | 2016.08.12 |
[UnityUI] Button for Mobile (0) | 2016.08.08 |
[UnityUI] Horizontal Page Scroll (0) | 2016.08.08 |
[UnityUI] Nested ScrollRect (0) | 2016.08.08 |
[UnityUI] Text LetterSpacing (0) | 2016.08.08 |
[UnityUI] Text Gradient (0) | 2016.08.08 |