Bevy Ascii Terminal
A simple ascii terminal integrated into bevy's ecs framework.
The goal of this crate is to provide a simple, straightforward, and hopefully fast method for rendering colorful ascii in bevy. It was made with "traditional roguelikes" in mind, but should serve as a simple UI tool if needed.
```rust use bevy::prelude::; use bevy_ascii_terminal::;
fn setup(mut commands: Commands) { // Create the terminal and write to it let mut terminal = Terminal::withsize([20,3]); terminal.drawborder(BorderGlyphs::singleline()); // Draw a blue "Hello world!" to the terminal terminal.putstring([1, 1], "Hello world!".fg(Color::BLUE));
// Spawn the terminal bundle from our terminal
commands.spawn_bundle(TerminalBundle::from(terminal))
// Automatically set up the camera for this terminal
.insert(AutoCamera);
}
fn main () { App::new() .addplugins(DefaultPlugins) .addplugin(TerminalPlugin) .addstartupsystem(setup) .run(); } ```
| bevy | bevyasciiterminal | | --- | --- | | 0.8 | 0.11 | | 0.7 | 0.9-0.10 |