| 399 | } |
| 400 | |
| 401 | NpAggregate* NpAggregate::createObject(PxU8*& address, PxDeserializationContext& context) |
| 402 | { |
| 403 | NpAggregate* obj = new (address) NpAggregate(PxBaseFlag::eIS_RELEASABLE); |
| 404 | address += sizeof(NpAggregate); |
| 405 | obj->importExtraData(context); |
| 406 | obj->resolveReferences(context); |
| 407 | return obj; |
| 408 | } |
| 409 | |
| 410 | void NpAggregate::requiresObjects(PxProcessPxBaseCallback& c) |
| 411 | { |
nothing calls this directly
no test coverage detected