1
0
Fork 0
mirror of https://github.com/OpenMW/openmw.git synced 2025-02-06 07:15:36 +00:00

Fix bhkConvexSweepShape loading

This commit is contained in:
Alexei Kotov 2023-09-23 21:06:56 +03:00
parent 67075990bd
commit 47a1403717
2 changed files with 3 additions and 1 deletions

View file

@ -553,7 +553,7 @@ namespace Nif
struct bhkConvexSweepShape : bhkShape
{
bhkConvexShape mShape;
bhkConvexShapePtr mShape;
HavokMaterial mMaterial;
float mRadius;

View file

@ -147,6 +147,7 @@ namespace Nif
struct bhkShape;
struct bhkSerializable;
struct bhkEntity;
struct bhkConvexShape;
struct hkPackedNiTriStripsData;
struct NiAccumulator;
struct NiInterpolator;
@ -192,6 +193,7 @@ namespace Nif
using bhkWorldObjectPtr = RecordPtrT<bhkWorldObject>;
using bhkShapePtr = RecordPtrT<bhkShape>;
using bhkEntityPtr = RecordPtrT<bhkEntity>;
using bhkConvexShapePtr = RecordPtrT<bhkConvexShape>;
using hkPackedNiTriStripsDataPtr = RecordPtrT<hkPackedNiTriStripsData>;
using NiAccumulatorPtr = RecordPtrT<NiAccumulator>;
using NiInterpolatorPtr = RecordPtrT<NiInterpolator>;