blob: 3b5f4832fe91588cddd98c9f691bff2245f1dfc9 [file] [log] [blame]
#include "rive/data_bind/context/context_value_boolean.hpp"
#include "rive/data_bind/data_values/data_value_boolean.hpp"
#include "rive/generated/core_registry.hpp"
using namespace rive;
DataBindContextValueBoolean::DataBindContextValueBoolean(DataBind* dataBind) :
DataBindContextValue(dataBind)
{}
void DataBindContextValueBoolean::apply(Core* target,
uint32_t propertyKey,
bool isMainDirection)
{
syncSourceValue();
auto value = calculateValue<DataValueBoolean, bool>(m_dataValue,
isMainDirection,
m_dataBind);
CoreRegistry::setBool(target, propertyKey, value);
}