(key: f64)
| 248 | |
| 249 | #[wasm_bindgen] |
| 250 | pub fn bloom_is_key_down(key: f64) -> f64 { |
| 251 | if engine().input.is_key_down(key as usize) { 1.0 } else { 0.0 } |
| 252 | } |
| 253 | |
| 254 | #[wasm_bindgen] |
| 255 | pub fn bloom_is_key_released(key: f64) -> f64 { |
nothing calls this directly
no test coverage detected