This commit is contained in:
watrabi
2025-09-18 17:55:52 -04:00
commit 977f1ff4b8
15030 changed files with 17324420 additions and 0 deletions
@@ -0,0 +1,22 @@
#pragma once
#include "V8DataModel/PartInstance.h"
#include "V8DataModel/IAnimatableJoint.h"
namespace RBX
{
class AnimatableRootJoint : public IAnimatableJoint
{
bool isAnimating;
shared_ptr<PartInstance> part;
CoordinateFrame lastCFrame;
public:
AnimatableRootJoint(const shared_ptr<PartInstance>& part);
PartInstance* getPart() const { return part.get(); }
/*override*/ void setAnimating(bool value);
/*override*/ const std::string& getParentName();
/*override*/ const std::string& getPartName();
/*override*/ void applyPose(const CachedPose& pose);
};
}