This commit is contained in:
ZappoMan 2014-11-12 16:57:42 -08:00
parent dd22683672
commit ef17659ea2
2 changed files with 0 additions and 10 deletions

View file

@ -73,12 +73,6 @@ 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) {

View file

@ -36,8 +36,6 @@ ModelEntityItem::ModelEntityItem(const EntityItemID& entityItemID, const EntityI
_lastAnimated = usecTimestampNow();
_jointMappingCompleted = false;
_color[0] = _color[1] = _color[2] = 0;
//_animationFrameIndex = 0.0f;
}
EntityItemProperties ModelEntityItem::getProperties() const {
@ -116,8 +114,6 @@ int ModelEntityItem::readEntitySubclassDataFromBuffer(const unsigned char* data,
setAnimationFPS(animationFPS);
setAnimationFrameIndex(animationFrameIndex);
qDebug() << "just read PROP_ANIMATION_FRAME_INDEX, getAnimationFrameIndex():" << getAnimationFrameIndex();
READ_ENTITY_PROPERTY_STRING(PROP_TEXTURES, setTextures);
return bytesRead;