bevy_match3
is a crate for handling the logic side of match 3 games in Bevy.
| bevy
| bevy_match3
|
| ------ | ------------- |
| 0.6 | 0.0.1 |
To get started with this crate all you need is to set up the plugin
rust
use bevy_match3::prelude::*;
fn main() {
App::new()
.add_plugins(DefaultPlugins)
.add_plugin(Match3Plugin)
.run();
}
React to board events
rust
fn consume_events(
mut events: ResMut<BoardEvents>,
) {
if let Ok(event) = events.pop() {
match event {
BoardEvent::Swapped(pos1, pos2) => todo!(),
BoardEvent::FailedSwap(pos1, pos2) => todo!(),
BoardEvent::Popped(pos) => todo!(),
BoardEvent::Matched(matches) => todo!(),
BoardEvent::Dropped(drops) => todo!(),
BoardEvent::Spawned(spawns) => todo!(),
}
}
}
and start sending commands to the board using the BoardCommands
resource!
For now there is one example of all features at basic.rs
Note that this project is licensed under the Anti-Capitalist Software License
. If this proves a major obstacle for adoption I may consider a more conventional license, I would just like to avoid this crate being flipped by the likes of King and similar.