6c84f865d8
1. 휴대폰에서 실시가능하도록 조이스틱 및 버튼 입력 2. 콜라이더 및 트리거 구조 변경 3. 로테이션 단계이상함 감지 - 수정 예정
14 lines
218 B
C#
14 lines
218 B
C#
using UnityEngine;
|
|
|
|
public class GameSettings : MonoBehaviour
|
|
{
|
|
public static bool IsMobile;
|
|
|
|
void Awake()
|
|
{
|
|
IsMobile = Application.isMobilePlatform;
|
|
|
|
DontDestroyOnLoad(gameObject);
|
|
}
|
|
}
|