コード例 #1
0
ファイル: Player.cs プロジェクト: Rovaldev/terrain-generator
    //Movement method
    private void Movement()
    {
        //Calculate the axis of movement
        float _horizontal = Input.GetAxis("Horizontal");
        float _vertical   = Input.GetAxis("Vertical");

        Vector3 _direction = transform.right * _horizontal + transform.forward * _vertical;

        //Move the player
        motor.Move(_direction, speed);

        //If is is grounded then can jump
        if (motor.isGrounded)
        {
            if (Input.GetKeyDown(KeyCode.Space))
            {
                motor.Jump(jumpForce);
            }
        }
    }
コード例 #2
0
ファイル: PlayerMovement.cs プロジェクト: Arkhane/Scripts
 void Jump()
 {
     motor.Jump(speed_Jump);
 }
コード例 #3
0
 void Jump()
 {
     motor.Jump(jumpPower);
 }