목록일시정지 (1)
woong's
Unity Game 일시정지 하기
Unity Game 일시정지 하기 timeScale : 실제 시간에 대한 게임 시간timeScale 의 기본값은 1 , 기본값 1은 실제 시간과 같다.timeScale 을 0.5 로 하면 실제시간의 0.5배 느린 시간이 된다 . 이처럼 timeScale 을 이용해서 일시정지를 시킬수 있다 .timeScale이 실제시간이므로 0 으로 변경해주면 실제 시간이 멈추는것을 볼수 있다 . Colored By Color Scripter™123456789101112131415161718192021222324252627282930using UnityEngine;using System.Collections; public class PauseScript : MonoBehaviour { private bool isPause..
Develop/Unity
2016. 2. 13. 20:13