blob: 38a3f5d8346a084f8b957ffb31efbd954d4de36f [file] [log] [blame]
#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) {
CoreRegistry::setUint(object, propertyKey, value());
}