blob: 401a655cb41af4b7e692162ce00361e3cbfe56db [file] [log] [blame]
#include "rive/animation/keyframe_id.hpp"
#include "rive/generated/core_registry.hpp"
using namespace rive;
void KeyFrameBool::apply(Core* object, int propertyKey, float mix)
{
CoreRegistry::setBool(object, propertyKey, value());
}
void KeyFrameBool::applyInterpolation(Core* object,
int propertyKey,
float currentTime,
const KeyFrame* nextFrame,
float mix)
{
CoreRegistry::setBool(object, propertyKey, value());
}