Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jarkonik committed Jun 21, 2023
1 parent fc4a525 commit dbdb8f2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
⚠️ **Pre-release, alpha version**: API is bound to change, bugs are to be expected.

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, only [Rhai](https://rhai.rs/) is supported, but more languages may be added in the future.

It's main advantages include:
- low-boilerplate
Expand Down Expand Up @@ -73,8 +74,6 @@ which you can then call in your script like this:
fun_with_string_param("Hello world!");
```

Currently, only [Rhai](https://rhai.rs/) is supported, but more languages may be added in the future.

### Usage

Add the following to your `Cargo.toml`:
Expand Down
3 changes: 1 addition & 2 deletions src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
//! ⚠️ **Pre-release, alpha version**: API is bound to change, bugs are to be expected.
//!
//! 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, only [Rhai](https://rhai.rs/) is supported, but more languages may be added in the future.
//!
//! It's main advantages include:
//! - low-boilerplate
Expand Down Expand Up @@ -71,8 +72,6 @@
//! fun_with_string_param("Hello world!");
//! ```
//!
//! Currently, only [Rhai](https://rhai.rs/) is supported, but more languages may be added in the future.
//!
//! ## Usage
//!
//! Add the following to your `Cargo.toml`:
Expand Down

0 comments on commit dbdb8f2

Please sign in to comment.