| 41 | } |
| 42 | |
| 43 | NpArticulationJoint* NpArticulationJoint::createObject(PxU8*& address, PxDeserializationContext& context) |
| 44 | { |
| 45 | NpArticulationJoint* obj = new (address) NpArticulationJoint(PxBaseFlags(0)); |
| 46 | address += sizeof(NpArticulationJoint); |
| 47 | obj->importExtraData(context); |
| 48 | obj->resolveReferences(context); |
| 49 | return obj; |
| 50 | } |
| 51 | // ~PX_SERIALIZATION |
| 52 | |
| 53 | NpArticulationJoint::NpArticulationJoint(NpArticulationLink& parent, |
nothing calls this directly
no test coverage detected