| 177 | } |
| 178 | |
| 179 | String ClientCommandProcessor::asyncLighting() { |
| 180 | auto worldClient = m_universeClient->worldClient(); |
| 181 | bool state = !worldClient->asyncLighting(); |
| 182 | worldClient->setAsyncLighting(state); |
| 183 | return strf("Asynchronous render lighting {}", state ? "enabled" : "disabled"); |
| 184 | } |
| 185 | |
| 186 | String ClientCommandProcessor::setGravity(String const& argumentsString) { |
| 187 | auto arguments = m_parser.tokenizeToStringList(argumentsString); |
nothing calls this directly
no test coverage detected