(axis: f64, value: f64)
| 1834 | } |
| 1835 | #[no_mangle] |
| 1836 | pub extern "C" fn bloom_inject_gamepad_axis(axis: f64, value: f64) { |
| 1837 | engine().input.set_gamepad_axis(axis as usize, value as f32); |
| 1838 | } |
| 1839 | #[no_mangle] |
| 1840 | pub extern "C" fn bloom_inject_gamepad_button_down(button: f64) { |
| 1841 | engine().input.set_gamepad_button_down(button as usize); |
nothing calls this directly
no test coverage detected