Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 5062 in orxonox.OLD for orxonox/trunk/src/util/animation/animation.h


Ignore:
Timestamp:
Aug 17, 2005, 1:02:01 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: animation3D-update, so now one should be able to let the setPos/setDir away, but it does not really work

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/util/animation/animation.h

    r5039 r5062  
    3333typedef enum ANIM_FUNCTION
    3434{
    35   ANIM_CONSTANT,
    36   ANIM_LINEAR,
    37   ANIM_SINE,
    38   ANIM_COSINE,
    39   ANIM_EXP,
    40   ANIM_NEG_EXP,
    41   ANIM_QUADRATIC,
    42   ANIM_RANDOM,
    43   ANIM_NULL
     35  ANIM_NULL         = 0,
     36  ANIM_CONSTANT     = 1,
     37  ANIM_LINEAR       = 2,
     38  ANIM_SINE         = 3,
     39  ANIM_COSINE       = 4,
     40  ANIM_EXP          = 5,
     41  ANIM_NEG_EXP      = 6,
     42  ANIM_QUADRATIC    = 7,
     43  ANIM_RANDOM       = 8,
    4444};
    4545
Note: See TracChangeset for help on using the changeset viewer.