| 172 | } |
| 173 | |
| 174 | LightInfo* LightManager::getSpecialLight( LightManager::SpecialLightTypesEnum type, bool useDefault ) |
| 175 | { |
| 176 | if ( mSpecialLights[type] ) |
| 177 | return mSpecialLights[type]; |
| 178 | |
| 179 | if ( useDefault ) |
| 180 | return getDefaultLight(); |
| 181 | |
| 182 | return NULL; |
| 183 | } |
| 184 | |
| 185 | void LightManager::setSpecialLight( LightManager::SpecialLightTypesEnum type, LightInfo *light ) |
| 186 | { |
no outgoing calls
no test coverage detected