mirror of
https://github.com/bevyengine/bevy
synced 2025-01-10 20:29:01 +00:00
465c3d4f7b
Use glyph_brush_layout and add text alignment support Co-authored-by: Olivier Pinon <op@impero.com> Co-authored-by: tigregalis <anak.harimau@gmail.com> Co-authored-by: Carter Anderson <mcanders1@gmail.com>
40 lines
871 B
Rust
40 lines
871 B
Rust
mod draw;
|
|
mod error;
|
|
mod font;
|
|
mod font_atlas;
|
|
mod font_atlas_set;
|
|
mod font_loader;
|
|
mod glyph_brush;
|
|
mod pipeline;
|
|
|
|
pub use draw::*;
|
|
pub use error::*;
|
|
pub use font::*;
|
|
pub use font_atlas::*;
|
|
pub use font_atlas_set::*;
|
|
pub use font_loader::*;
|
|
pub use glyph_brush::*;
|
|
pub use pipeline::*;
|
|
|
|
pub mod prelude {
|
|
pub use crate::{Font, TextAlignment, TextError, TextStyle};
|
|
pub use glyph_brush_layout::{HorizontalAlign, VerticalAlign};
|
|
}
|
|
|
|
use bevy_app::prelude::*;
|
|
use bevy_asset::AddAsset;
|
|
use bevy_ecs::Entity;
|
|
|
|
pub type DefaultTextPipeline = TextPipeline<Entity>;
|
|
|
|
#[derive(Default)]
|
|
pub struct TextPlugin;
|
|
|
|
impl Plugin for TextPlugin {
|
|
fn build(&self, app: &mut AppBuilder) {
|
|
app.add_asset::<Font>()
|
|
.add_asset::<FontAtlasSet>()
|
|
.init_asset_loader::<FontLoader>()
|
|
.add_resource(DefaultTextPipeline::default());
|
|
}
|
|
}
|