Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Subtract 1 from text positions to account for glyph texture padding. #11662

Merged
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/bevy_text/src/glyph_brush.rs
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ impl GlyphBrush {
}
};

let position = adjust.position(Vec2::new(x, y));
ickshonpe marked this conversation as resolved.
Show resolved Hide resolved
let position = adjust.position(Vec2::new(x, y) - 1.);
ickshonpe marked this conversation as resolved.
Show resolved Hide resolved

positioned_glyphs.push(PositionedGlyph {
position,
Expand Down