예제 #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;
    }
예제 #2
0
 public void Walk()
 {
     SetupPivots();
     m_clip = new DudeWalking(this);
 }
예제 #3
0
 public void Jump()
 {
     SetupPivots();
     m_clip = new DudeJumping(this);
 }
예제 #4
0
 public void Sink()
 {
     SetupPivots();
     m_clip = new DudeSinking(this);
 }
예제 #5
0
 public void PrepareToJump()
 {
     SetupPivots();
     m_clip = new DudePreparingToJump(this);
 }
예제 #6
0
 public void Swim()
 {
     SetupPivots();
     m_clip = new DudeSwimming(this);
 }
예제 #7
0
 public void Fall()
 {
     SetupPivots();
     m_clip = new DudeFalling(this);
 }