improve animation panel

This commit is contained in:
2019-10-19 22:30:44 +02:00
parent e25de3c454
commit 27576443ca
12 changed files with 120 additions and 25 deletions

View File

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