mirror of
https://github.com/lightsoutgames/bevy_tts.git
synced 2024-11-21 19:15:57 +00:00
Update to Bevy 0.8.
This commit is contained in:
parent
7de7ae66ad
commit
f30bd26150
|
@ -13,9 +13,9 @@ speech_dispatcher_0_10 = ["tts/speech_dispatcher_0_10"]
|
||||||
tolk = ["tts/tolk"]
|
tolk = ["tts/tolk"]
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
bevy = { version = "0.7", default-features = false }
|
bevy = { version = "0.8", default-features = false }
|
||||||
crossbeam-channel = "0.5"
|
crossbeam-channel = "0.5"
|
||||||
tts = { version = "0.23", default-features = false }
|
tts = { version = "0.23", default-features = false }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
bevy = { version = "0.7", default-features = true }
|
bevy = { version = "0.8", default-features = true }
|
|
@ -5,7 +5,7 @@ fn main() {
|
||||||
App::new()
|
App::new()
|
||||||
.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::window::close_on_esc)
|
||||||
.add_startup_system(setup)
|
.add_startup_system(setup)
|
||||||
.add_system(event_poll)
|
.add_system(event_poll)
|
||||||
.add_system(greet)
|
.add_system(greet)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user