| 293 | } |
| 294 | |
| 295 | void NetObject::clearScopeAlways() |
| 296 | { |
| 297 | if(!mNetFlags.test(IsGhost)) |
| 298 | { |
| 299 | mNetFlags.clear(ScopeAlways); |
| 300 | Sim::getGhostAlwaysSet()->removeObject(this); |
| 301 | |
| 302 | // Un ghost this object from all the connections |
| 303 | while(mFirstObjectRef) |
| 304 | mFirstObjectRef->connection->detachObject(mFirstObjectRef); |
| 305 | } |
| 306 | } |
| 307 | |
| 308 | bool NetObject::onAdd() |
| 309 | { |
no test coverage detected