| 194 | } |
| 195 | |
| 196 | void ReflectionProbe::inspectPostApply() |
| 197 | { |
| 198 | Parent::inspectPostApply(); |
| 199 | |
| 200 | mDirty = true; |
| 201 | |
| 202 | bool liveUpdates = Con::getBoolVariable("$Probes::liveUpdates", false); |
| 203 | if (liveUpdates) |
| 204 | { |
| 205 | bake(); |
| 206 | } |
| 207 | |
| 208 | // Flag the network mask to send the updates |
| 209 | // to the client object |
| 210 | setMaskBits(-1); |
| 211 | } |
| 212 | |
| 213 | bool ReflectionProbe::_setEnabled(void *object, const char *index, const char *data) |
| 214 | { |
no test coverage detected