using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using Unity.Mathematics;
using UnityEngine.SceneManagement;
public class test : MonoBehaviour
{
public float moveSpeed = 5.0f; //플레이어 이동 속도
public float jumpPower = 5.0f; //플레이어 점프 힘
public Rigidbody2D rigid;
float horizontal; //왼쪽, 오른쪽 방향값을 받는 변수
public bool isground;//값을 받을 bool값
public Transform groundCheck;//player발위치
public float groundRadius = 0.2f;//측정할 범위
public LayerMask whatIsGround;//어떤 layer를 측정할지
public Animator animator;//애니메이터 추가
private void Start()
{
rigid = GetComponent<Rigidbody2D>();
}
private void FixedUpdate()
{
isground = Physics2D.OverlapCircle(groundCheck.position, groundRadius, whatIsGround);
if (isground == true)
{
animator.SetBool("jump", false);
}
Move(); //플레이어 이동
Jump(); //점프
}
void OnTriggerEnter2D(Collider2D col)
{
if (col.gameObject.tag == "spike")
{
SceneManager.LoadScene("test");
}
if (col.gameObject.tag == "goal")
{
SceneManager.LoadScene("test");
}
}
void Jump()
{
if (Input.GetButton("Jump")) //점프 키가 눌렸을 때//ground이면서 스페이스바 누르면
{
if (isground == true) //점프 중이지 않을 때
{
animator.SetBool("jump", true);//점프하면 애니메이터 설정 jump true.
rigid.AddForce(Vector2.up * jumpPower, ForceMode2D.Impulse); //위쪽으로 힘을 준다.
isground = false;
}
else return; //점프 중일 때는 실행하지 않고 바로 return.
}
}
void Move()
{
horizontal = Input.GetAxis("Horizontal");
if (horizontal != 0)
{
animator.SetBool("walk", true);//애니메이터 설정 walk를 true.
if (horizontal >= 0) this.transform.eulerAngles = new Vector3(0, 0, 0);
else this.transform.eulerAngles = new Vector3(0, 180, 0);
}
else
{
animator.SetBool("walk", false);//좌우로 안움직이면 애니메이터 설정 walk false.
}
Vector3 dir = math.abs(horizontal) * Vector3.right; //변수의 자료형을 맞추기 위해 생성한 새로운 Vector3 변수
this.transform.Translate(dir * moveSpeed * Time.deltaTime); //오브젝트 이동 함수
}
}