nightshade 0.57.0

A cross-platform data-oriented game engine.
Documentation
1
2
3
4
5
6
7
8
9
//! Text shaping resources. The font engine and its embedded font data live in
//! `nightshade-renderer` beside the glyph meshing that uses them; the shared
//! text state and slot cache live in `nightshade-ui` beside the widget systems
//! that operate on them. This module re-exports both so the
//! `crate::ecs::text::resources::*` paths keep resolving across the engine and
//! apps.

pub use nightshade_text::font_engine::{DEFAULT_FONT_DATA, DEFAULT_MONO_FONT_DATA, FontEngine};
pub use nightshade_text::text::{TextCache, TextState};