Skip to content

Commit

Permalink
Don't change the scene's y clipping at all when changing the map y cl…
Browse files Browse the repository at this point in the history
…ipping.
  • Loading branch information
leMaik committed Sep 24, 2024
1 parent 275c711 commit fffe570
Showing 1 changed file with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -517,13 +517,7 @@ private void updateYClipSlidersRanges(World world) {
yMax.setRange(-64, 320);
} else {
yMin.setRange(0, 256);
if (yMin.get() < 0) {
yMin.set(0);
}
yMax.setRange(0, 256);
if (yMax.get() > 256) {
yMax.set(256);
}
}
}
}

0 comments on commit fffe570

Please sign in to comment.