blob: a1aabd79de65fc39785c899c55151d5639398502 [file]
#include "rive/animation/keyframe_id.hpp"
#include "rive/generated/core_registry.hpp"
using namespace rive;
void KeyFrameId::apply(Core* object, int propertyKey, float mix)
{
CoreRegistry::setUint(object, propertyKey, value());
}
void KeyFrameId::applyInterpolation(Core* object,
int propertyKey,
float currentTime,
const KeyFrame* nextFrame,
float mix,
const LinearAnimationInstance* context)
{
(void)context;
CoreRegistry::setUint(object, propertyKey, value());
}