Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
RDPipelineDepthStencilState¶
继承: RefCounted < Object
管线的深度/模板状态(由 RenderingDevice 使用)。
描述¶
RDPipelineDepthStencilState 控制的是在使用 RenderingDevice 对深度和模板进行采样时,如何进行深度和模板的比较。
属性¶
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
||
|
属性说明¶
CompareOperator back_op_compare = 7
🔗
void set_back_op_compare(value: CompareOperator)
CompareOperator get_back_op_compare()
用于比较前一个背面模板值和 back_op_reference 的方法。
int back_op_compare_mask = 0
🔗
选择将比较背面模板值中的哪些位。
StencilOperation back_op_depth_fail = 1
🔗
void set_back_op_depth_fail(value: StencilOperation)
StencilOperation get_back_op_depth_fail()
对通过模板测试但未通过深度测试的背面像素的模板缓冲区执行的操作。
StencilOperation back_op_fail = 1
🔗
void set_back_op_fail(value: StencilOperation)
StencilOperation get_back_op_fail()
对模板缓冲区中未通过模板测试的背面像素执行的操作
StencilOperation back_op_pass = 1
🔗
void set_back_op_pass(value: StencilOperation)
StencilOperation get_back_op_pass()
对通过模板测试的背面像素的模板缓冲区执行的操作。
将与前一个背面模板值进行比较的值。
选择背面模板值中的哪些位将被更改。
CompareOperator depth_compare_operator = 7
🔗
void set_depth_compare_operator(value: CompareOperator)
CompareOperator get_depth_compare_operator()
用于比较前一个和当前深度值的方法。
enable_depth_range 将返回 true 的最大深度。
enable_depth_range 将返回 true 的最小深度。
bool enable_depth_range = false
🔗
如果为 true
,则将测试每个深度值以查看它是否在 depth_range_min 和 depth_range_max 之间。如果超出这些值,则将其丢弃。
bool enable_depth_test = false
🔗
如果为 true
,则会启用深度测试,能够让对象根据深度自动被其他对象遮挡。这样对象就能够被其他对象部分遮挡。如果为 false
,则对象会按照绘制顺序显示(类似 Godot 的 2D 渲染器)。
bool enable_depth_write = false
🔗
如果为 true
,则每当深度测试返回 true 时写入深度缓冲区。仅当 enable_depth_test 也为 true 时才有效。
如果为 true
,则启用模板测试。正面三角形和背面三角形有单独的模板缓冲区。请参阅每个以“front_op”开头和以“back_op”开头的属性。
CompareOperator front_op_compare = 7
🔗
void set_front_op_compare(value: CompareOperator)
CompareOperator get_front_op_compare()
该方法用于比较前一个正面模板值和 front_op_reference。
int front_op_compare_mask = 0
🔗
选择正面模板值中的哪些位将被比较。
StencilOperation front_op_depth_fail = 1
🔗
void set_front_op_depth_fail(value: StencilOperation)
StencilOperation get_front_op_depth_fail()
对通过模板测试但未通过深度测试的正面像素的模板缓冲区执行的操作。
StencilOperation front_op_fail = 1
🔗
void set_front_op_fail(value: StencilOperation)
StencilOperation get_front_op_fail()
对模板缓冲区中未通过模板测试的正面像素执行的操作。
StencilOperation front_op_pass = 1
🔗
void set_front_op_pass(value: StencilOperation)
StencilOperation get_front_op_pass()
对通过模板测试的正面像素的模板缓冲区执行的操作。
将与前一个正面模板值进行比较的值。
选择正面模板值中的哪些位将被更改。