blob: 7fbc94c54ca1a7f238d5add5eaa9516e4a6e9428 [file]
#include "animation/keyframe_id.hpp"
#include "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());
}