Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
create font atlas that can contains fonts of any size (bevyengine#3592)
# Objective - Bevy currently panics when displaying text with a *very* big font size (with font size greater than 400, the glyph would have a width or height greater than 512) ``` thread 'main' panicked at 'Fatal error when processing text: failed to add glyph to newly-created atlas GlyphId(514).', crates/bevy_ui/src/widget/text.rs:118:21 ``` ## Solution - Create font atlas that scales up with the size of the glyphs
- Loading branch information