bevy_slow_text_outline 0.3.0

Text outlines for the bevy game engine
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#![cfg_attr(docsrs, feature(doc_auto_cfg))]
#![allow(rustdoc::redundant_explicit_links)]
#![doc = include_str!("../README.md")]
#[allow(unused_imports)]
use crate as bevy_slow_text_outline;

mod plugin;
mod text_outline;
pub mod text_outline_rendering;

pub mod prelude
{
    pub use crate::plugin::*;
    pub use crate::text_outline::*;
}