forked from StrafesNET/strafe-project
pick up wasm dep
This commit is contained in:
parent
3c78d9c94c
commit
86d6f7c6a7
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -2240,6 +2240,7 @@ dependencies = [
|
||||
"strafesnet_deferred_loader",
|
||||
"strafesnet_rbx_loader",
|
||||
"strafesnet_snf",
|
||||
"wasm-bindgen-futures",
|
||||
"wgpu",
|
||||
"winit",
|
||||
]
|
||||
|
@ -27,5 +27,6 @@ strafesnet_common = { path = "../lib/common", registry = "strafesnet" }
|
||||
strafesnet_deferred_loader = { path = "../lib/deferred_loader", features = ["legacy"], registry = "strafesnet", optional = true }
|
||||
strafesnet_rbx_loader = { path = "../lib/rbx_loader", registry = "strafesnet", optional = true }
|
||||
strafesnet_snf = { path = "../lib/snf", registry = "strafesnet", optional = true }
|
||||
wasm-bindgen-futures = "0.4.49"
|
||||
wgpu = "23.0.1"
|
||||
winit = "0.30.7"
|
||||
|
@ -14,5 +14,8 @@ mod graphics_worker;
|
||||
|
||||
fn main(){
|
||||
let title=format!("Strafe Client v{}",env!("CARGO_PKG_VERSION"));
|
||||
#[cfg(target_arch="wasm32")]
|
||||
wasm_bindgen_futures::spawn_local(setup::setup_and_start(title));
|
||||
#[cfg(not(target_arch="wasm32"))]
|
||||
pollster::block_on(setup::setup_and_start(title));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user