bevy_generative_grammars 0.0.2

A plugin for handling generative grammars in bevy
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Bevy Generative Grammars


This is a library for handling generative grammars in bevy.

At the moment, I'm starting with simple grammars - the first one is based on [Tracery](https://github.com/galaxykate/tracery), which is primarily useful for strings.

However, I intend to add some other structures, to open the door for more complex options such as geometry grammars and graph grammars.

For documentation - you can find [the Book](https://lee-orr.github.io/bevy-generative-grammars) and [the API Docs](https://lee-orr.github.io/bevy-generative-grammars/doc/bevy_generative_grammars/index.html)

## Installation


```toml
[dependencies]
bevy = "0.12"
bevy-generative-grammars = { version = "0.0.2", features = ["bevy"]}
```