| 53 | } |
| 54 | |
| 55 | NpRigidStatic* NpRigidStatic::createObject(PxU8*& address, PxDeserializationContext& context) |
| 56 | { |
| 57 | NpRigidStatic* obj = new (address) NpRigidStatic(PxBaseFlag::eIS_RELEASABLE); |
| 58 | address += sizeof(NpRigidStatic); |
| 59 | obj->importExtraData(context); |
| 60 | obj->resolveReferences(context); |
| 61 | return obj; |
| 62 | } |
| 63 | //~PX_SERIALIZATION |
| 64 | |
| 65 | void NpRigidStatic::release() |
nothing calls this directly
no test coverage detected