Skip to content

Commit

Permalink
libgui|ModelDrawable: Print loaded animation tick rates to log
Browse files Browse the repository at this point in the history
  • Loading branch information
skyjake committed Feb 19, 2018
1 parent 766f450 commit 8dcf5ea
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion doomsday/sdk/libgui/src/graphics/modeldrawable.cpp
Expand Up @@ -718,7 +718,9 @@ DENG2_PIMPL(ModelDrawable)
animNameToIndex.clear();
for (duint i = 0; i < scene->mNumAnimations; ++i)
{
LOG_GL_VERBOSE("Animation #%i name:%s") << i << scene->mAnimations[i]->mName.C_Str();
LOG_GL_VERBOSE("Animation #%i name:%s tps:%f")
<< i << scene->mAnimations[i]->mName.C_Str()
<< scene->mAnimations[i]->mTicksPerSecond;

String const name = scene->mAnimations[i]->mName.C_Str();
if (!name.isEmpty())
Expand Down

0 comments on commit 8dcf5ea

Please sign in to comment.