diff --git a/crates/bevy_text/src/lib.rs b/crates/bevy_text/src/lib.rs index d5c4527e0b..73117d8084 100644 --- a/crates/bevy_text/src/lib.rs +++ b/crates/bevy_text/src/lib.rs @@ -71,6 +71,10 @@ use bevy_render::{ }; use bevy_sprite::SpriteSystem; +/// The raw data for the default font used by `bevy_text` +#[cfg(feature = "default_font")] +pub const DEFAULT_FONT_DATA: &[u8] = include_bytes!("FiraMono-subset.ttf"); + /// Adds text rendering support to an app. /// /// When the `bevy_text` feature is enabled with the `bevy` crate, this