MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / actionExists

Method actionExists

src/Core/Input/InputManager.cpp:112–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

110 }
111
112 bool InputManager::actionExists(const std::string& actionId)
113 {
114 for (auto& action : m_allActions)
115 {
116 if (action->getId() == actionId)
117 {
118 return true;
119 }
120 }
121 return false;
122 }
123
124 void InputManager::clear()
125 {

Callers 1

configureMethod · 0.95

Calls 1

getIdMethod · 0.80

Tested by

no test coverage detected