Changeset 3828 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Apr 14, 2005, 2:08:40 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/animation.h
r3827 r3828 58 58 aTest() { last = 0.0;} 59 59 ~aTest() {} 60 void littleDebug(float f) { diff = last - f; printf("f=%f, diff=%f\n", f,diff); last = f;}60 void littleDebug(float f) { diff = f - last; printf("f=%f, diff=%f\n", f,diff); last = f;} 61 61 private: 62 62 float diff; -
orxonox/trunk/src/story_entities/world.cc
r3826 r3828 382 382 testAnim->addKeyFrame(0.0, 1.0, ANIM_LINEAR); 383 383 testAnim->addKeyFrame(1.0, 1.0, ANIM_LINEAR); 384 testAnim->addKeyFrame(0.0, 1.0, ANIM_SINE);385 testAnim->addKeyFrame(1.0, 1.0, ANIM_SINE);384 //testAnim->addKeyFrame(0.0, 1.0, ANIM_LINEAR); 385 //testAnim->addKeyFrame(1.0, 1.0, ANIM_LINEAR); 386 386 testAnim->setInfinity(ANIM_INF_REWIND); 387 387 break;
Note: See TracChangeset
for help on using the changeset viewer.