2025-08-17 13:14:17 -04:00
|
|
|
#ifndef XANIMDELTAPART_H
|
|
|
|
|
#define XANIMDELTAPART_H
|
|
|
|
|
|
|
|
|
|
#include "xasset.h"
|
|
|
|
|
#include "xanimparttrans.h"
|
|
|
|
|
#include "xanimdeltapartquat.h"
|
|
|
|
|
|
|
|
|
|
class XAnimDeltaPart : public XAsset
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
explicit XAnimDeltaPart();
|
2025-09-05 18:35:17 -04:00
|
|
|
~XAnimDeltaPart();
|
2025-08-17 13:14:17 -04:00
|
|
|
|
|
|
|
|
void ParseData(QDataStream *aStream) override;
|
2025-09-05 18:35:17 -04:00
|
|
|
void Clear() override;
|
2025-08-17 13:14:17 -04:00
|
|
|
|
|
|
|
|
const XAnimPartTrans& GetTrans() const;
|
|
|
|
|
void SetTrans(const XAnimPartTrans& trans);
|
|
|
|
|
|
|
|
|
|
const XAnimDeltaPartQuat& GetQuat() const;
|
|
|
|
|
void SetQuat(const XAnimDeltaPartQuat& quat);
|
|
|
|
|
|
|
|
|
|
private:
|
|
|
|
|
XAnimPartTrans mTrans;
|
|
|
|
|
XAnimDeltaPartQuat mQuat;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
#endif // XANIMDELTAPART_H
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|