mirror of
https://github.com/PrimeDecomp/prime.git
synced 2025-12-13 06:06:07 +00:00
@@ -6,7 +6,22 @@
|
||||
#include "Kyoto/Math/CVector3f.hpp"
|
||||
|
||||
#include "rstl/optional_object.hpp"
|
||||
|
||||
enum EBoneTrackingFlags {
|
||||
kBTF_None = 0,
|
||||
kBTF_NoParent = 1,
|
||||
kBTF_NoParentOrigin = 2,
|
||||
kBTF_NoHorizontalAim = 4,
|
||||
kBTF_ParentIk = 8,
|
||||
};
|
||||
|
||||
class CBoneTracking {
|
||||
public:
|
||||
CBoneTracking(const CAnimData& animData, const rstl::string& bone, float maxTrackingAngle,
|
||||
float angSpeed, EBoneTrackingFlags flags);
|
||||
|
||||
void SetActive(bool v);
|
||||
|
||||
private:
|
||||
CQuaternion x0_rotation;
|
||||
float x10_;
|
||||
@@ -14,7 +29,7 @@ private:
|
||||
float x18_time;
|
||||
float x1c_maxTrackingAngle;
|
||||
float x20_angSpeed;
|
||||
rstl::optional_object<CVector3f> x24_targetPosition;
|
||||
rstl::optional_object< CVector3f > x24_targetPosition;
|
||||
TUniqueId x34_target;
|
||||
uchar x36_flags;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user