add some debug

This commit is contained in:
ZappoMan 2014-11-12 16:12:34 -08:00
parent 245f019836
commit ba79f40007

View file

@ -73,6 +73,10 @@ void AnimationLoop::simulate(float deltaTime) {
_frameIndex = startFrameIndex + glm::mod(_frameIndex - startFrameIndex, endFrameIndex - startFrameIndex);
}
}
qDebug() << "AnimationLoop::simulate()";
qDebug() << " deltaTime:" << deltaTime;
qDebug() << " _frameIndex:" << _frameIndex;
}
void AnimationLoop::setStartAutomatically(bool startAutomatically) {