728x90
반응형
public CharacterController controller;
public float speed = 10f;
public float gravity = -19.62f;
public Transform groundCheck;
public float groundDistance = 0.4f;
public LayerMask groundMask;
public float jumpHeight = 3f;
Vector3 velocity;
bool isGrounded;
private void Update()
{
isGrounded = Physics.CheckSphere(groundCheck.position, groundDistance, groundMask);//땅에 붙어 있는지 확인
if(isGrounded && velocity.y < 0)
{
velocity.y = -2f; // 자연스럽게 떨어지는 속도 조절 가능
}
float x = Input.GetAxis("Horizontal");
float y = Input.GetAxis("Vertical");
Vector3 move = transform.right * x + transform.forward * y;
controller.Move(move * speed *Time.deltaTime); // 플레이어 x,y축 움직임
if(Input.GetButtonDown("Jump") && isGrounded)
{
velocity.y = Mathf.Sqrt(jumpHeight * -2f * gravity);//점프
}
velocity.y += gravity * Time.deltaTime;
controller.Move(velocity * Time.deltaTime); // 중력에 의한 움직임
}
728x90
반응형
'Unity' 카테고리의 다른 글
[Unity] Top View Shooting Game Demo - pooling, dither(1) (0) | 2020.03.17 |
---|---|
[Unity] Mouse Look Script (0) | 2020.03.16 |
[Unity] VR Hand Physics - Object collision (0) | 2020.03.12 |
[Unity] NavMesh - 자동으로 추격해오는 적 만들기 혹은 마우스로 장애물을 피해 캐릭터 움직이기 (0) | 2020.03.11 |
[Unity] Playfab Notification Setting Error (0) | 2020.02.06 |