(button: f64)
| 414 | |
| 415 | #[wasm_bindgen] |
| 416 | pub fn bloom_inject_gamepad_button_down(button: f64) { |
| 417 | engine().input.set_gamepad_button_down(button as usize); |
| 418 | } |
| 419 | |
| 420 | #[wasm_bindgen] |
| 421 | pub fn bloom_inject_gamepad_button_up(button: f64) { |
nothing calls this directly
no test coverage detected