mirror of
https://github.com/FabricMC/fabric.git
synced 2025-04-03 10:39:57 -04:00
Revert "Fix the bitwise comparison for BAKE_NORMALIZED (#2353)"
This reverts commit 0ca985e2c2
.
This commit is contained in:
parent
0ca985e2c2
commit
16d6ef959a
1 changed files with 1 additions and 1 deletions
|
@ -39,7 +39,7 @@ public class TextureHelper {
|
|||
if (quad.nominalFace() != null && (MutableQuadView.BAKE_LOCK_UV & bakeFlags) != 0) {
|
||||
// Assigns normalized UV coordinates based on vertex positions
|
||||
applyModifier(quad, spriteIndex, UVLOCKERS[quad.nominalFace().getId()]);
|
||||
} else if ((MutableQuadView.BAKE_NORMALIZED & bakeFlags) != 0) {
|
||||
} else if ((MutableQuadView.BAKE_NORMALIZED & bakeFlags) == 0) {
|
||||
// Scales from 0-16 to 0-1
|
||||
applyModifier(quad, spriteIndex, (q, i, t) -> q.sprite(i, t, q.spriteU(i, t) * NORMALIZER, q.spriteV(i, t) * NORMALIZER));
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue