
Integrating to your Bevy App
Add to Cargo.toml:
[dependencies]
bevy_slugtext = "0.1.0"
Include the library:
use *;
Second, add a SlugTextPlugin to your app:
new
...
.add_plugins
...;
Then, spawn a textmesh bundle:
```rust
commands.spawn;