| 1264 | } |
| 1265 | |
| 1266 | void afxConstraintMgr::removeScopeableObject(SceneObject* object) |
| 1267 | { |
| 1268 | for (S32 i = 0; i < scopeable_objs.size(); i++) |
| 1269 | if (scopeable_objs[i] == object) |
| 1270 | { |
| 1271 | object->removeScopeRef(); |
| 1272 | scopeable_objs.erase_fast(i); |
| 1273 | return; |
| 1274 | } |
| 1275 | } |
| 1276 | |
| 1277 | void afxConstraintMgr::clearAllScopeableObjs() |
| 1278 | { |
no test coverage detected