text
stringlengths
0
8.81k
Name
Type
Description
ZERO
number
Sets the stencil buffer value to zero.
KEEP
number
Does not change the stencil buffer.
REPLACE
number
Replaces the stencil buffer value with the reference value.
INCREMENT
number
Increments the stencil buffer value, clamping to unsigned byte.
DECREMENT
number
Decrements the stencil buffer value, clamping to zero.
INVERT
number
Bitwise inverts the existing stencil buffer value.
INCREMENT_WRAP
number
Increments the stencil buffer value, wrapping to zero when exceeding the unsigned byte range.
DECREMENT_WRAP
number
Decrements the stencil buffer value, wrapping to the maximum unsigned byte instead of going below zero.
constant StripeOrientation : number
engine/Source/DataSources/StripeOrientation.js 6
Defined the orientation of stripes in StripeMaterialProperty.
Properties:
Name
Type
Description
HORIZONTAL
number
Horizontal orientation.
VERTICAL