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