Ruby support #1

Open
jaroslaw wants to merge 165 commits from ruby into main
3 changed files with 3 additions and 3 deletions
Showing only changes of commit 663d54e729 - Show all commits

View file

@ -21,7 +21,7 @@ bevy_scriptum's main advantages include:
- flexibility - flexibility
- hot-reloading - hot-reloading
Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game or application logic without having to recompile your game. Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game or application logic without having to recompile it.
All you need to do is register callbacks on your Bevy app like this: All you need to do is register callbacks on your Bevy app like this:
```rust ```rust

View file

@ -20,7 +20,7 @@ bevy_scriptum's main advantages include:
- flexibility - flexibility
- hot-reloading - hot-reloading
Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game logic without having to recompile your game. Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game logic without having to recompile it.
All you need to do is register callbacks on your Bevy app like this: All you need to do is register callbacks on your Bevy app like this:
```rust ```rust

View file

@ -20,7 +20,7 @@
//! - flexibility //! - flexibility
//! - hot-reloading //! - hot-reloading
//! //!
//! Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game or application logic without having to recompile your game. //! Scripts are separate files that can be hot-reloaded at runtime. This allows you to quickly iterate on your game or application logic without having to recompile it.
//! //!
//! All you need to do is register callbacks on your Bevy app like this: //! All you need to do is register callbacks on your Bevy app like this:
//! ```no_run //! ```no_run