Class CutoutShaders
java.lang.Object
dev.engine_room.flywheel.lib.material.CutoutShaders
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final CutoutShaderDiscard fragments with alpha close to or equal to zero.static final CutoutShaderDiscard fragments with alpha less than to 0.5.static final CutoutShaderDo not discard any fragments based on alpha.static final CutoutShaderDiscard fragments with alpha less than to 0.1. -
Method Summary
-
Field Details
-
OFF
Do not discard any fragments based on alpha. -
EPSILON
Discard fragments with alpha close to or equal to zero. -
ONE_TENTH
Discard fragments with alpha less than to 0.1. -
HALF
Discard fragments with alpha less than to 0.5.
-