(&self, name: &str)
| 190 | /// Return `true` when any binding for the named action is pressed this frame. |
| 191 | #[inline] |
| 192 | pub fn pressed(&self, name: &str) -> bool { |
| 193 | self.pressed_hash(action_hash(name)) |
| 194 | } |
| 195 | |
| 196 | /// Return `true` when any binding for the named action is released this frame. |
| 197 | #[inline] |
nothing calls this directly
no test coverage detected