feat: integrate Rust C-ABI StardustXR bridge; prefer bridge over raw sockets; add shutdown handling; CLI overrides; optional SDK flags; basic Overte stubs; SceneSync and InputHandler scaffolding

This commit is contained in:
MayaTheShy
2025-11-08 13:49:14 -05:00
parent 83313e2f63
commit fd0b288dd8

View File

@@ -85,8 +85,7 @@ pub extern "C" fn sdxr_start(app_id: *const std::os::raw::c_char) -> i32 {
}); });
ast::client::run::<BridgeState>(&[]).await; ast::client::run::<BridgeState>(&[]).await;
// Ensure command task ends // Do not await cmd_task here; runtime shutdown will cancel it
let _ = cmd_task.await;
}); });
drop(rt); drop(rt);
let _ = res; let _ = res;