blob: 07ddb531af6e0836e89900922ee9f44e3bd1d24d [file]
#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);
}