(&self, name: &str)
| 184 | /// Return `true` while any binding for the named action is held. |
| 185 | #[inline] |
| 186 | pub fn down(&self, name: &str) -> bool { |
| 187 | self.down_hash(action_hash(name)) |
| 188 | } |
| 189 | |
| 190 | /// Return `true` when any binding for the named action is pressed this frame. |
| 191 | #[inline] |
nothing calls this directly
no test coverage detected