Ejemplo n.º 1
0
    public void ClearClip()
    {
        m_clip = null;

        m_handLeftAngleSpeed  = 0.0f;
        m_handRightAngleSpeed = 0.0f;
        m_legLeftAngle        = 0.0f;
        m_legLeftAngleSpeed   = 0.0f;
        m_legRightAngle       = 0.0f;
        m_legRightAngleSpeed  = 0.0f;
    }
Ejemplo n.º 2
0
 public void Walk()
 {
     SetupPivots();
     m_clip = new DudeWalking(this);
 }
Ejemplo n.º 3
0
 public void Jump()
 {
     SetupPivots();
     m_clip = new DudeJumping(this);
 }
Ejemplo n.º 4
0
 public void Sink()
 {
     SetupPivots();
     m_clip = new DudeSinking(this);
 }
Ejemplo n.º 5
0
 public void PrepareToJump()
 {
     SetupPivots();
     m_clip = new DudePreparingToJump(this);
 }
Ejemplo n.º 6
0
 public void Swim()
 {
     SetupPivots();
     m_clip = new DudeSwimming(this);
 }
Ejemplo n.º 7
0
 public void Fall()
 {
     SetupPivots();
     m_clip = new DudeFalling(this);
 }