move demo up (#37)
This commit is contained in:
parent
f9e872e111
commit
ec84d9e740
2 changed files with 4 additions and 8 deletions
|
|
@ -1,5 +1,7 @@
|
|||
# bevy_scriptum 📜
|
||||
|
||||

|
||||
|
||||
bevy_scriptum is a a plugin for [Bevy](https://bevyengine.org/) that allows you to write some of your game logic in a scripting language.
|
||||
Currently [Rhai](https://rhai.rs/) and [Lua](https://lua.org/) are supported, but more languages may be added in the future.
|
||||
|
||||
|
|
@ -174,10 +176,6 @@ App::new()
|
|||
|
||||
You should then see `my_print: 'Hello world!'` printed in your console.
|
||||
|
||||
### Demo
|
||||
|
||||

|
||||
|
||||
### Provided examples
|
||||
|
||||
You can also try running provided examples by cloning this repository and running `cargo run --example <example_name>_<language_name>`. For example:
|
||||
|
|
|
|||
|
|
@ -1,3 +1,5 @@
|
|||
//! 
|
||||
//!
|
||||
//! bevy_scriptum is a a plugin for [Bevy](https://bevyengine.org/) that allows you to write some of your game logic in a scripting language.
|
||||
//! Currently [Rhai](https://rhai.rs/) and [Lua](https://lua.org/) are supported, but more languages may be added in the future.
|
||||
//!
|
||||
|
|
@ -172,10 +174,6 @@
|
|||
//!
|
||||
//! You should then see `my_print: 'Hello world!'` printed in your console.
|
||||
//!
|
||||
//! ## Demo
|
||||
//!
|
||||
//! 
|
||||
//!
|
||||
//! ## Provided examples
|
||||
//!
|
||||
//! You can also try running provided examples by cloning this repository and running `cargo run --example <example_name>_<language_name>`. For example:
|
||||
|
|
|
|||
Loading…
Reference in a new issue