| 170 | } |
| 171 | |
| 172 | bool InputMap::has_action(const StringName &p_action) const { |
| 173 | return input_map.has(p_action); |
| 174 | } |
| 175 | |
| 176 | String InputMap::get_action_description(const StringName &p_action) const { |
| 177 | ERR_FAIL_COND_V_MSG(!input_map.has(p_action), String(), suggest_actions(p_action)); |
no test coverage detected