Solved issues with onMenuIdle animations in attract mode.

This commit is contained in:
Pieter Hulshoff 2020-03-15 12:31:07 +01:00
parent 12b1103781
commit 2cccd00d65
2 changed files with 3 additions and 2 deletions

View File

@ -185,7 +185,8 @@ void Component::update(float dt)
}
animationRequested_ = false;
}
else if (tweens_ && currentTweenComplete_)
if (tweens_ && currentTweenComplete_)
{
animationType_ = "idle";
currentTweens_ = tweens_->getAnimation( "idle", menuIndex_ );

View File

@ -21,7 +21,7 @@
std::string retrofe_version_major = "0";
std::string retrofe_version_minor = "9";
std::string retrofe_version_build = "25";
std::string retrofe_version_build = "26";
std::string Version::getString( )