This crate makes it easy to use the undo-operation on bevy.
```rust
use bevy::prelude::; use bevy_undo2::prelude::;
struct GreetEvent(String);
fn main() {
App::new()
.addplugins(DefaultPlugins)
.addplugins(UndoPlugin)
.addsystems(Startup, setup)
.addsystems(Update, (keyboardinputsystem, readundoeventsystem))
.addundo_event::
fn setup(
mut commands: Commands,
mut scheduler: UndoScheduler
fn keyboardinputsystem( mut requester: UndoRequester, key: Res>, ) { if key.pressed(KeyCode::R) { requester.undo(); } }
fn readundoeventsystem(
mut er: EventReader
Callbacks can also be registered by using UndoCallbackEvent
, which is built in by default.
rust
fn setup(
mut scheduler: UndoScheduler<UndoCallbackEvent>
) {
let entity: Enity;
scheduler.register(UndoCallbackEvent::new(move |cmd| {
cmd.entity(text).despawn();
}));
}
It is possible to send multiple events with single call undo
by placing in the reserved area.
See below for an example:
| this crate | bevy | |------------|--------| | 0.0.1 | 0.11.0 |