게임 제작시 필수라고 할 수 있는 종료시키는 방법을 알아봅니다. 두가지 방법이 있는데, 특정 버튼을 눌렀을 때 종료시키는 방법(함수 실행)과 안드로이드 폰의 되돌리기를 탭했을 때 종료(Update문 실행)시키는 방법. 완성된 apk파일을 안드로이드 폰으로 저장 후 실제 테스트해보는 영상까지 편집되었습니다.
[Quit.cs]
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class Quit : MonoBehaviour
{
// Update is called once per frame
void Update()
{
if (Input.GetKeyDown(KeyCode.Escape))
GameQuit();
}
public void GameQuit()
{
Application.Quit();
}
}
댓글