80 releases (31 breaking)
0.40.2 | May 11, 2023 |
---|---|
0.39.5 | May 6, 2023 |
0.38.1 | Feb 25, 2023 |
0.29.1 | Dec 26, 2022 |
0.24.5 | Nov 30, 2022 |
#5 in #vr
654 downloads per month
Used in 4 crates
(3 directly)
7.5MB
4.5K
SLoC
A library for Stardust XR clients to use with abstractions over the client, nodes, and event loop.
Example
use stardust_xr_fusion::client::Client;
#[tokio::main(flavor="current_thread")]
async fn main() {
let (_client, event_loop) = Client::connect_with_async_loop().await.unwrap();
tokio::select! {
biased;
_ = tokio::signal::ctrl_c() => (),
e = event_loop => e.unwrap().unwrap(),
}
}
Dependencies
~12–19MB
~351K SLoC