| 163 | } |
| 164 | |
| 165 | String ClientCommandProcessor::boxes() { |
| 166 | auto worldClient = m_universeClient->worldClient(); |
| 167 | bool state = !worldClient->collisionDebug(); |
| 168 | worldClient->setCollisionDebug(state); |
| 169 | return strf("Geometry debug display {}", state ? "enabled" : "disabled"); |
| 170 | } |
| 171 | |
| 172 | String ClientCommandProcessor::fullbright() { |
| 173 | auto worldClient = m_universeClient->worldClient(); |
nothing calls this directly
no test coverage detected