blob: e425c4f2f54c3c4f60f7869e58ec3d7523f1a9bf [file] [log] [blame]
#include "rive/animation/nested_linear_animation.hpp"
#include "rive/animation/linear_animation_instance.hpp"
using namespace rive;
NestedLinearAnimation::NestedLinearAnimation() {}
NestedLinearAnimation::~NestedLinearAnimation() {}
void NestedLinearAnimation::initializeAnimation(ArtboardInstance* artboard) {
m_AnimationInstance = std::make_unique<LinearAnimationInstance>(artboard->animation(animationId()),
artboard);
}