[Game] #2. New Super Mario 스크립트 작성
2022. 3. 14.
MarioController 스크립트 작성 Asset에 Scripts 폴더를 생성하고 MarioController C# 스크립트를 생성한다. using UnityEngine; public class MarioController : MonoBehaviour { public AudioClip deathClip; // 사망시 재생할 오디오 클립 public float jumpForce = 700f; // 점프 힘 private int jumpCount = 0; // 누적 점프 횟수 private bool isGrounded = false; // 바닥에 닿았는지 나타냄 private bool isRinning = false; // 바닥에 닿았는지 나타냄 private bool isDead = false; // ..