Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |
Tags
- neople
- 메타마스크
- 아두이노우노
- 이더리움
- 인터럽트
- 유니티에러
- 던전앤파이터
- 암호화
- 머신러닝
- 컴퓨터구조
- 네오플
- 유니티
- 에러
- 메모리
- 게임기획
- 보안
- 반도체 엔지니어
- 아두이노함수
- 네트워크보안
- 네트워크
- 던파
- MuchineRunning
- 아두이노
- 반도체 취업
- 레지스터
- Unity
- 면접
- MLAgent
- 반도체
- memory
Archives
- Today
- Total
Dreaming Deve1oper
[Unity 3D] 점프 기능 추가하기 본문
이전 포스팅에서 중력작용에 대해 포스팅하였다.
이번 포스팅에선 오브젝트에 점프 기능을 구해보도록 하겠다.
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();
}
}
}
코드를 적용시키면
스페이스바를 입력시 오브젝트가 점프하는것을 확인할 수 있다.
'유니티' 카테고리의 다른 글
[Unity 3D] 1인칭 카메라 설정 (0) | 2022.02.08 |
---|---|
배경음악/BGM/노래 첨부하기 (0) | 2022.02.03 |
[Unity 3D] 오브젝트 중력작용 (0) | 2022.02.02 |
[Unity 3D] 방향키로 오브젝트 제어하기 (0) | 2022.01.25 |
Meterial을 통해 오브젝트 색깔 바꾸기 (0) | 2022.01.24 |
Comments