Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OrthographicProjection: place origin at integer pixel with WindowSize…
… scaling mode (bevyengine#4085) # Objective One way to avoid texture atlas bleeding is to ensure that every vertex is placed at an integer pixel coordinate. This is a particularly appealing solution for regular structures like tile maps. Doing so is currently harder than necessary when the WindowSize scaling mode and Center origin are used: For odd window width or height, the origin of the coordinate system is placed in the middle of a pixel at some .5 offset. ## Solution Avoid this issue by rounding the half width and height values.
- Loading branch information