| 37 | // PX_SERIALIZATION |
| 38 | |
| 39 | NpArticulationJoint* NpArticulationJoint::createObject(PxU8*& address, PxDeserializationContext& context) |
| 40 | { |
| 41 | NpArticulationJoint* obj = new (address) NpArticulationJoint(PxBaseFlags(0)); |
| 42 | address += sizeof(NpArticulationJoint); |
| 43 | obj->importExtraData(context); |
| 44 | obj->resolveReferences(context); |
| 45 | return obj; |
| 46 | } |
| 47 | |
| 48 | void NpArticulationJoint::resolveReferences(PxDeserializationContext& context) |
| 49 | { |
nothing calls this directly
no test coverage detected