Skip to content

Commit

Permalink
Removed shrink of U and V by 16 in UnitTextureAtlasSprite (#582)
Browse files Browse the repository at this point in the history
  • Loading branch information
nikita488 authored Jan 29, 2024
1 parent c923b71 commit 6caa6e3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ private UnitTextureAtlasSprite() {

@Override
public float getU(float u) {
return u / 16;
return u;
}

@Override
public float getV(float v) {
return v / 16;
return v;
}
}

0 comments on commit 6caa6e3

Please sign in to comment.