Mod your Bevy games with WebAssembly!
bevy_wasm
: For gamesbevy_wasm_sys
: For modsSee examples/cubes for a comprehensive example of how to use this.
Our protocol crate defines the two message types for communicating between the game and mods.
```rust use serde::{Deserialize, Serialize};
/// A message to be sent Mod -> Game.
pub enum ModMessage { Hello, }
/// A message to be sent Game -> Mod.
pub enum GameMessage { HiThere, } ```
Our game will import WasmPlugin
from bevy_wasm
, and use it to automatically send and receive messages with the mods.
```rust use bevy::prelude::*; use bevywasm::WasmPlugin; use mygames_protocol::{GameMessage, ModMessage};
fn main() { let startupmods = vec![ includebytes!("somemod.wasm"), includebytes!("someothermod.wasm"), ];
App::build()
.add_plugins(DefaultPlugins)
.add_plugin(WasmPlugin::<GameMessage, ModMessage>::new(startup_mods))
.add_system(listen_for_mod_messages)
.add_system(send_messages_to_mods)
.run();
}
fn listenformod_messages(mut events: EventReader
fn sendmessagesto_mods(mut events: EventWriter
Our mod will import FFIPlugin
from bevy_wasm_sys
, and use it to automatically send and receive messages with the game.
```rust use bevywasmsys::prelude::*; use mygamesprotocol::{GameMessage, ModMessage};
pub unsafe extern "C" fn buildapp() {
App::new()
.addplugin(FFIPlugin::
fn listenforgame_messages(mut events: EventReader
fn sendmessagesto_game(mut events: EventWriter