Skip to content

Commit

Permalink
fix: path
Browse files Browse the repository at this point in the history
  • Loading branch information
mrchantey committed Jul 3, 2024
1 parent 406f4d7 commit 082b2ea
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 13 deletions.
18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ tokio = ["beet_net/tokio", "beet_examples/tokio"]
# dynamic_linking = ["bevy/dynamic_linking"]

[dependencies]
# beet = { path = "crates/beet", version = "0.0.1" }
beet_core.workspace = true
beet_ecs.workspace = true
beet_ml = { workspace = true, optional = true }
Expand All @@ -57,7 +56,7 @@ wasm-bindgen.workspace = true
tokio.workspace = true


### WORKSPACE ###########################################################################################################################
### WORKSPACE ################################################################################################z###########################

[workspace.package]
version = "0.0.1"
Expand Down
4 changes: 2 additions & 2 deletions crates/beet_ml/src/language/bert_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,12 +40,12 @@ impl AssetLoader for BertLoader {
#[cfg(feature = "beet_net")]
pub fn ready_on_bert_load(
mut asset_events: EventReader<AssetEvent<Bert>>,
mut ready_events: EventWriter<beet_net::replication::AppReady>,
mut ready_events: EventWriter<beet_net::prelude::AppReady>,
) {
for ev in asset_events.read() {
match ev {
AssetEvent::LoadedWithDependencies { id: _ } => {
ready_events.send(beet_net::replication::AppReady);
ready_events.send(beet_net::prelude::AppReady);
}
_ => {}
}
Expand Down

0 comments on commit 082b2ea

Please sign in to comment.