mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-22 07:05:57 +00:00
Fix examples.
This commit is contained in:
parent
bb3394280f
commit
517af1800e
|
@ -5,10 +5,10 @@ fn main() {
|
||||||
App::build()
|
App::build()
|
||||||
.add_plugins(DefaultPlugins)
|
.add_plugins(DefaultPlugins)
|
||||||
.add_plugin(bevy_tts::TtsPlugin)
|
.add_plugin(bevy_tts::TtsPlugin)
|
||||||
.add_system(bevy::input::system::exit_on_esc_system)
|
.add_system(bevy::input::system::exit_on_esc_system.system())
|
||||||
.add_startup_system(setup)
|
.add_startup_system(setup.system())
|
||||||
.add_system(event_poll)
|
.add_system(event_poll.system())
|
||||||
.add_system(greet)
|
.add_system(greet.system())
|
||||||
.run();
|
.run();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user