From dbdb8f20b358e1969ddf903468089584685aa2cb Mon Sep 17 00:00:00 2001 From: Jaroslaw Konik Date: Wed, 21 Jun 2023 16:53:01 +0200 Subject: [PATCH] Update README.md --- README.md | 3 +-- src/lib.rs | 3 +-- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5886142e..5bcc5622 100644 --- a/README.md +++ b/README.md @@ -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 @@ -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`: diff --git a/src/lib.rs b/src/lib.rs index 1f6a9ed9..cfc45940 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 @@ -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`: