| 170 | } |
| 171 | |
| 172 | String ClientCommandProcessor::fullbright() { |
| 173 | auto worldClient = m_universeClient->worldClient(); |
| 174 | bool state = !worldClient->fullBright(); |
| 175 | worldClient->setFullBright(state); |
| 176 | return strf("Fullbright render lighting {}", state ? "enabled" : "disabled"); |
| 177 | } |
| 178 | |
| 179 | String ClientCommandProcessor::asyncLighting() { |
| 180 | auto worldClient = m_universeClient->worldClient(); |
nothing calls this directly
no test coverage detected