MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / createObject

Method createObject

deps/physx/physx/source/physx/src/NpArticulation.cpp:45–52  ·  view source on GitHub ↗

PX_SERIALIZATION

Source from the content-addressed store, hash-verified

43
44// PX_SERIALIZATION
45NpArticulation* NpArticulation::createObject(PxU8*& address, PxDeserializationContext& context)
46{
47 NpArticulation* obj = new (address) NpArticulation(PxBaseFlag::eIS_RELEASABLE);
48 address += sizeof(NpArticulation);
49 obj->importExtraData(context);
50 obj->resolveReferences(context);
51 return obj;
52}
53//~PX_SERIALIZATION
54
55

Callers

nothing calls this directly

Calls 2

importExtraDataMethod · 0.45
resolveReferencesMethod · 0.45

Tested by

no test coverage detected