blob: 96f10f34a57f75fcf263644f8c581878b58392b5 [file] [log] [blame] [edit]
#include <sstream>
#include <iomanip>
#include <array>
#include "rive/viewmodel/viewmodel_instance_boolean.hpp"
#include "rive/component_dirt.hpp"
using namespace rive;
void ViewModelInstanceBoolean::propertyValueChanged()
{
addDirt(ComponentDirt::Bindings);
#ifdef WITH_RIVE_TOOLS
if (m_changedCallback != nullptr)
{
m_changedCallback(this, propertyValue());
}
#endif
onValueChanged();
}