blob: ceb701da800e452dd1a7f7b4e95999317e0e4192 [file] [log] [blame]
#include "rive/animation/animation_state.hpp"
#include "rive/animation/linear_animation.hpp"
#include "rive/animation/animation_state_instance.hpp"
#include "rive/animation/system_state_instance.hpp"
#include "rive/core_context.hpp"
#include "rive/artboard.hpp"
using namespace rive;
StateInstance* AnimationState::makeInstance(Artboard* instance) const {
if (animation() == nullptr) {
// Failed to load at runtime/some new type we don't understand.
return new SystemStateInstance(this, instance);
}
return new AnimationStateInstance(this, instance);
}