Dreaming Deve1oper

[Unity 3D] 점프 기능 추가하기 본문

유니티

[Unity 3D] 점프 기능 추가하기

주현테크 2022. 2. 3. 19:25
이전 포스팅에서 중력작용에 대해 포스팅하였다.
이번 포스팅에선 오브젝트에 점프 기능을 구해보도록 하겠다.

https://juhuyunjjung.tistory.com/90

 

[Unity 3D] 오브젝트 중력작용

이전 포스팅에서 방향키를 통해 오브젝트를 제어하도록 하였다. 이번 포스팅에선 오브젝트에 중력을 적용시켜보도록 하겠다. https://juhuyunjjung.tistory.com/84?category=1029878 [Unity 3D] 방향키로 오브젝

juhuyunjjung.tistory.com

 


 

Movement3D 스크립트

아래 코드를 참고하면 된다.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class Movement3D : MonoBehaviour
{

    [SerializeField]
    private float moveSpeed = 5.0f;

    [SerializeField]
    private float jumpForce = 3.0f;
    private float gravity = -9.81f;
    private Vector2 moveDirection;

    private CharacterController characterController;

    private void Awake()
    {
        characterController = GetComponent<CharacterController>();
    }

    private void Update()
    {
        if (characterController.isGrounded == false)
        {
            moveDirection.y += gravity * Time.deltaTime;
        }

        characterController.Move(moveDirection * moveSpeed * Time.deltaTime);
    }

    public void JumpTo()
    {
        if (characterController.isGrounded == true)
        {
            moveDirection.y = jumpForce;
        }
    }

}

 

 

PlayerController 스크립트

아래 코드를 참고하면 된다.

using System.Collections;
using System.Collections.Generic;
using UnityEngine;

public class PlayerController : MonoBehaviour
{
    [SerializeField]
    private KeyCode jumpKeyCode = KeyCode.Space;
    private Movement3D movement3D;


    private void Awake()
    {
        movement3D = GetComponent<Movement3D>();
    }

    private void Update()
    {
        if (Input.GetKeyDown(jumpKeyCode)) 
        {
            movement3D.JumpTo();
        }
    }
}

 


 

코드를 적용시키면 

스페이스바를 입력시 오브젝트가 점프하는것을 확인할 수 있다.

 

 

 

 

 

 

 

 

 

 

 

출처: https://www.youtube.com/watch?v=NQg1_NVi-6o

Comments