(staging_handle: f64)
| 1914 | |
| 1915 | #[wasm_bindgen] |
| 1916 | pub fn bloom_commit_sound(staging_handle: f64) -> f64 { |
| 1917 | match bloom_shared::staging::take_sound(staging_handle) { |
| 1918 | Some(sd) => engine().audio.load_sound(sd), |
| 1919 | None => 0.0, |
| 1920 | } |
| 1921 | } |
| 1922 | |
| 1923 | #[wasm_bindgen] |
| 1924 | pub fn bloom_commit_music(staging_handle: f64) -> f64 { |
nothing calls this directly
no test coverage detected