Survivalcraft API 1.8.2.3 v1.8.2.3
Survivalcraft 2.4
载入中...
搜索中...
未找到
DepthStencilState.cs
浏览该文件的文档.
1namespace Engine.Graphics {
4
6
8
9 public static readonly DepthStencilState Default = new() { IsLocked = true };
10
11 public static readonly DepthStencilState DepthRead = new() { DepthBufferWriteEnable = false, IsLocked = true };
12
13 public static readonly DepthStencilState DepthWrite = new() { DepthBufferTestEnable = false, IsLocked = true };
14
15 public static readonly DepthStencilState None = new() { DepthBufferTestEnable = false, DepthBufferWriteEnable = false, IsLocked = true };
16
19 set {
22 }
23 }
24
27 set {
30 }
31 }
32
35 set {
38 }
39 }
40 }
41}
static readonly DepthStencilState Default
static readonly DepthStencilState None
static readonly DepthStencilState DepthRead
static readonly DepthStencilState DepthWrite