add animation playback

This commit is contained in:
2019-10-19 01:12:58 +02:00
parent 467e83b69e
commit d35ab08ffb
9 changed files with 75 additions and 3 deletions

View File

@@ -114,3 +114,8 @@ float NodeComboBox::get_float(int index) const noexcept
{
return std::stof(m_data[index]);
}
float NodeComboBox::get_float() const noexcept
{
return std::stof(m_data[m_current_index]);
}