본문 바로가기
Development/멋쟁이사자처럼 게임개발 부트캠프

[멋쟁이사자처럼 Unity 게임 부트캠프 4기] 20일차 - Katana ZERO (1)

by jjeondeuk1008 2025. 4. 3.
반응형

 

[ 목차 ]

     


     

    1945에 이어서 다른 게임을 실습해 보는 가진다.

     

     

    횡스크롤 종류의 KATANA ZERO 게임을 구현해 볼 것이다.

    2D 횡스크롤은 엄청나게 많은 종류이면서 게임의 기본 중 기본이라고도 볼 수 있다.

     

    이번 실습에서는 전에 배웠던 것과 겹치는 부분도 있으니

    다시 복습을 한다는 느낌과 새로운 것을 함께 배운다는 생각으로 가보자고!

     

    그럼 힘차게 시작해봅시다!

     

     


     

     

     

     

    1. 캐릭터와 배경

     

     

    배경플레이어(Animator idle 포함)를 배치한다.

     

     

     

    Rigidbody 2D, Capsule Collider 2D 추가

    이렇게 추가하면 중력 때문에 게임을 실행하면 플레이어가 계속 떨어지게 될 것이다.

     

     

     

    떨어지지 않게 바닥을 막아줄 것이다.

    GameObject를 넣고, Box Collider 2D를 하위 객체로 만들고 추가한다.

     

     

     

     

    바닥 사이즈만큼 콜라이더 범위를 만든다.

     

     

     

     

    캐릭터가 바닥에서 움직이다가 어딘가의 툭 걸려서 회전하는 것을 방지하기 위해

    Rigidbody2D - Constraints - Freeze Rotationz값 체크

     

    왜 z값일까?

    회전은 x, y, z가 기준으로 회전한다는 것이다.

     

     

     

    이제 Player 스크립트를 작성한다.

    Player의 기본적인 움직임을 처리하는 스크립트이다.

    플레이어의 이동 속도, 점프의 높이, 플레이어의 이동 방향이다.

     

    그리고 KeyInput() 메서드에서 왼쪽을 누르면 왼쪽 방향을 바라보고,

    오른쪽을 누르면 오른쪽 방향을 바라보는 방향 전환 모션 코드를 만들어준다.

    using UnityEngine;
    
    public class Player : MonoBehaviour
    {
        public float speed = 5;
        public float jumpUp = 1;
        public Vector3 direction;
    
        Animator pAnimator;
        Rigidbody2D pRig2D;
        SpriteRenderer sp;
    
        void Start()
        {
            pAnimator = GetComponent<Animator>();
            pRig2D = GetComponent<Rigidbody2D>();
            direction = Vector2.zero;
            sp = GetComponent<SpriteRenderer>();
    
        }
    
        void KeyInput()
        {
            direction.x = Input.GetAxisRaw("Horizontal"); //왼쪽은 -1   0   1
    
            if(direction.x <0)
            {
                //left
                sp.flipX = true;
            }
            else if(direction.x >0)
            {
                //right
                sp.flipX = false;
            }
            else if(direction.x == 0)
            {
    
            }
    
        }
    
        
        void Update()
        {
            
        }
    }
    

     

     

     


     

     

    2. 애니메이션

     

     

     

    (1) 이동 애니메이션

     

    이제 이동할 때의 애니메이션을 만들어 줄 것이다.

     

    player가 달릴 때의 사진을 애니메이션으로 만들고 idle와 연결해 준다.

     

    기본적으로 Has Exit Time 체크를 해제하고,

    Transition Duration을 0으로 설정한다.

     

    run에서 idle로 갈 때는 Run이 False고,

    idle에서 run으로 갈 때는 Run이 True로 설정해야 한다.

     

     

     

    플레이어의 이동 방향을 감지하고 애니메이션을 변경하는 것의 스크립트를 추가로 작성한다.

      void KeyInput()
     {
         direction.x = Input.GetAxisRaw("Horizontal"); //왼쪽은 -1   0   1
    
         if(direction.x <0)
         {
             //left
             sp.flipX = true;
             pAnimator.SetBool("Run", true);
         }
         else if(direction.x >0)
         {
             //right
             sp.flipX = false;
             pAnimator.SetBool("Run", true);
         }
         else if(direction.x == 0)
         {
             pAnimator.SetBool("Run", false);
         }
    
     }
    

     

     

     

    그렇게 해서 전체 코드이다.

     using UnityEngine;
    
    public class Player : MonoBehaviour
    {
        public float speed = 5;
        public float jumpUp = 1;
        public Vector3 direction;
    
        Animator pAnimator;
        Rigidbody2D pRig2D;
        SpriteRenderer sp;
    
        void Start()
        {
            pAnimator = GetComponent<Animator>();
            pRig2D = GetComponent<Rigidbody2D>();
            direction = Vector2.zero;
            sp = GetComponent<SpriteRenderer>();
    
        }
    
        void KeyInput()
        {
            direction.x = Input.GetAxisRaw("Horizontal"); //왼쪽은 -1   0   1
    
            if(direction.x <0)
            {
                //left
                sp.flipX = true;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x >0)
            {
                //right
                sp.flipX = false;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x == 0)
            {
                pAnimator.SetBool("Run", false);
            }
    
        }
    
        
        void Update()
        {
            KeyInput();
            Move();
        }
    
        public void Move()
        {
            transform.position += direction * speed * Time.deltaTime;
        }
    
    }
    

     

     

     

     

     

    (2) 점프 애니메이션

     

     

    점프 이미지를 넣고 이제 Animator에서 이어 줄 것이다.

     

     

     

    idle에서 Jump로 이어지는 트랜지션을 넣고

    Has Exit Time 체크 해제

    Transition Duration 0

    Conditions에서 Jump true로 설정

     

     

    반대로 jump에서 idle로 가는 트랜지션을 설정하고

    설정은 같게 한다. 하지만 jump false로 한다.

     

     

    run2에서 jump에서도 트랜지션을 추가하고,

    Jump true로 설정한다.

     

     

    반대로도 같이 설정한다.

    Run true로 설정한다.

     

     

     

     

     

    이제 Player 스크립트로 가 코드를 추가해 줄 것이다.

    Jump일 때를 실행하는 코드이다.

    public void Jump()
        {
            pRig2D.linearVelocity = Vector2.zero;
    
            pRig2D.AddForce(new Vector2(0, jumpUp), ForceMode2D.Impulse);
        }
    

     

     

     

     

    Update() 메서드에 W 키를 누르면 점프하게 되는 것으로 설정한다.

    void Update()
        {
            KeyInput();
            Move();
    
            if(Input.GetKeyDown(KeyCode.W))
            {
                Jump();
            }
    
        }
    

     

     

     

    그렇게 된 Player의 전체 코드이다.

     using UnityEngine;
    
    public class Player : MonoBehaviour
    {
        public float speed = 5;
        public float jumpUp = 1;
        public Vector3 direction;
    
        bool bJump = false;
        Animator pAnimator;
        Rigidbody2D pRig2D;
        SpriteRenderer sp;
    
        void Start()
        {
            pAnimator = GetComponent<Animator>();
            pRig2D = GetComponent<Rigidbody2D>();
            direction = Vector2.zero;
            sp = GetComponent<SpriteRenderer>();
    
        }
    
        void KeyInput()
        {
            direction.x = Input.GetAxisRaw("Horizontal"); //왼쪽은 -1   0   1
    
            if(direction.x <0)
            {
                //left
                sp.flipX = true;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x >0)
            {
                //right
                sp.flipX = false;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x == 0)
            {
                pAnimator.SetBool("Run", false);
            }
    
        }
    
        
        void Update()
        {
            KeyInput();
            Move();
    
            if(Input.GetKeyDown(KeyCode.W))
            {
                Jump();
            }
    
        }
    
        public void Jump()
        {
            pRig2D.linearVelocity = Vector2.zero;
    
            pRig2D.AddForce(new Vector2(0, jumpUp), ForceMode2D.Impulse);
        }
    
        public void Move()
        {
            transform.position += direction * speed * Time.deltaTime;
        }
    
    }
    

     

     

     

     

     

    여기에서 W를 누르면 무조건 Jump() 메서드가 실행되게 되는데,

    애니메이션 변경 값이 없다.

     

    그래서 점프 애니메이션이 false일 때만 점프 실행한다.

    if(Input.GetKeyDown(KeyCode.W))
    {
        if(pAnimator.GetBool("Jump") == false)
        {
            Jump();
            pAnimator.SetBool("Jump", true);
        }
    }
    
    

     

     

     

     

    캐릭터 아래로 레이(선)를 그린다.

    캐릭터가 바닥에 있는지 감지하는 용도로 쓰인다.

    그리고 레이어 Ground로 땅을 체크한다.

    private void FixedUpdate()
    {
        Debug.DrawRay(pRig2D.position, Vector3.down, new Color(0, 1, 0));
        
        //레이캐스트로 땅체크 
         RaycastHit2D rayHit = Physics2D.Raycast(pRig2D.position, Vector3.down, 1, LayerMask.GetMask("Ground"));
    }

     

     

     

     

     

    레이어를 Ground로 새로 추가한다.

     

     

     

     

     

    바닥의 레이어를 추가한 Ground로 변경한다.

     

     

     

     

     

    이제 다시 Animator에서 jump -> run2로 가는 트랜지션에서

    Jump false를 추가한다.

     

     

     

     

     

    jump에서 idle로 가는 트랜지션에서

    Run false를 추가한다.

     

     

     

     

    이제 공격 모션을 추가할 것이다.

    원하는 애니메이션 이미지를 애니메이션 클립으로 추가해 player_attack 이름으로 만든다.

     

    Has Exit Time 체크 해제

    Transition Duration 0

     

    그리고 Trigger 추가해서 이름을 Attack으로 하고

    run2에서 attack으로 되는 트랜지션에서 Conditions의 Trigger Attack을 추가한다.

     

     

     

     

    이제 왼쪽 마우스를 클릭하면 공격 모션이 되는 코드를 추가한다.

    Player 스크립트에서 추가한다.

    if (Input.GetMouseButtonDown(0)) //0번 왼쪽마우스
    {
        pAnimator.SetTrigger("Attack");
        Instantiate(hit_lazer, transform.position, Quaternion.identity);
    
    }

     

     

     

    그렇게 된 Player의 전체 코드이다.

    ```using UnityEngine;
    
    public class Player : MonoBehaviour
    {
        public float speed = 5;
        public float jumpUp = 1;
        public Vector3 direction;
        public GameObject slash;
    
        bool bJump = false;
        Animator pAnimator;
        Rigidbody2D pRig2D;
        SpriteRenderer sp;
    
        void Start()
        {
            pAnimator = GetComponent<Animator>();
            pRig2D = GetComponent<Rigidbody2D>();
            direction = Vector2.zero;
            sp = GetComponent<SpriteRenderer>();
    
        }
    
    
        void KeyInput()
        {
            direction.x = Input.GetAxisRaw("Horizontal"); //왼쪽은 -1   0   1
    
            if(direction.x <0)
            {
                //left
                sp.flipX = true;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x >0)
            {
                //right
                sp.flipX = false;
                pAnimator.SetBool("Run", true);
            }
            else if(direction.x == 0)
            {
                pAnimator.SetBool("Run", false);
            }
    
    
            if(Input.GetMouseButtonDown(0)) //0번 왼쪽마우스
            {
                pAnimator.SetTrigger("Attack");
            }
    
    
    
    
        }
    
        
        void Update()
        {
            KeyInput();
            Move();
    
            if(Input.GetKeyDown(KeyCode.W))
            {
                if(pAnimator.GetBool("Jump")==false)
                {
                    Jump();
                    pAnimator.SetBool("Jump", true);
                }
              
            }
    
        }
    
        private void FixedUpdate()
        {
            Debug.DrawRay(pRig2D.position, Vector3.down, new Color(0, 1, 0));
    
            //레이캐스트로 땅체크 
            RaycastHit2D rayHit = Physics2D.Raycast(pRig2D.position, Vector3.down, 1, LayerMask.GetMask("Ground"));
    
            if(pRig2D.linearVelocityY < 0)
            {
                if(rayHit.collider != null)
                {
                    if(rayHit.distance <0.7f)
                    {
                        pAnimator.SetBool("Jump", false);
                    }
                }
            }
    
    
        }
    
    
    
    
        public void Jump()
        {
            pRig2D.linearVelocity = Vector2.zero;
    
            pRig2D.AddForce(new Vector2(0, jumpUp), ForceMode2D.Impulse);
        }
    
    
    
    
    
        public void Move()
        {
            transform.position += direction * speed * Time.deltaTime;
        }
    
    }

     

     

     

     

     

     

    (3) 공격 시에 이펙트 효과

     

     

    공격 이펙트 효과를 추가할 건데, 이미지를 새로 Hierarchy에 추가한다.

    이렇게 되면 새로운 AnimatorAnimation Clip이 생성된다.

     

     

     

     

    이제 Player 스크립트에서 코드를 추가해 본다.

    public void AttSlash()
        {
            //플레이어 오른쪽
            Instantiate(slash, transform.position, Quaternion.identity);
        }

     

     

     

    이제 플레이어가 공격할 때 이펙트 애니메이션이 나와야 하니 공격에서 Event를 추가할 것이다.

     

    Animation에서 player_attack의 2번째 프레임을 선택한다.

    그리고 Add Event를 눌러 추가한다.

    Inspector에서 Function 함수 중 AttSlash()를 선택한다.

     

     

     

    이렇게 되면 이펙트가 나가게 된다.

     

     

     

     

     


     

     

    오늘은 새로운 게임 실습을 시작해 보았다.

     

     

    애니메이션을 점점 많이 연결할수록 복잡해지는 느낌이긴 한데,

    어찌 보면 꼭 필요한 애니메이션이니 하나씩 점점 알아가는 느낌이다.

     

    "여러 게임은 이러한 모션을 많이 구현하는구나..!"

     

    이러한 생각도 하면서 이 작업만으로도 시간이 많이 걸리겠구나를 느낀다.

    원하는 동작이 많아지면 그만큼 정성도 많이 들어간다..

     

     

    역시 인디게임의 길은 멀고도 멀다.....

     


    목차