2025-09-03 13:20:29 -04:00
|
|
|
#ifndef XPHYSGEOMINFO_H
|
|
|
|
|
#define XPHYSGEOMINFO_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
#include "xbrushwrapper.h"
|
|
|
|
|
|
|
|
|
|
class XPhysGeomInfo : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
XPhysGeomInfo();
|
|
|
|
|
~XPhysGeomInfo();
|
|
|
|
|
|
2025-09-10 21:58:26 -04:00
|
|
|
virtual void ParseData(XDataStream* aStream) override;
|
2025-09-03 13:20:29 -04:00
|
|
|
virtual void Clear() override;
|
|
|
|
|
|
|
|
|
|
private:
|
2025-09-10 21:58:26 -04:00
|
|
|
XBrushWrapper mBrush;
|
2025-09-03 13:20:29 -04:00
|
|
|
int mType;
|
|
|
|
|
QVector<QVector3D> mOrientation;
|
|
|
|
|
QVector3D mOffset;
|
|
|
|
|
QVector3D mHalfLengths;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XPHYSGEOMINFO_H
|