mirror of
https://github.com/lubosz/overte.git
synced 2025-04-10 00:04:18 +02:00
cleanup
This commit is contained in:
parent
dd22683672
commit
ef17659ea2
2 changed files with 0 additions and 10 deletions
|
@ -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) {
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue