유니티 앱 종료시 감지
Unity3D 2012. 11. 8. 15:50http://docs.unity3d.com/Documentation/ScriptReference/Application.CancelQuit.html
static function Quit () : void
Description
Quits the player application. Quit is ignored in the editor or the web player.
IMPORTANT: In most cases termination of application under iOS should be left at the user discretion. Consult Apple's Technical Q&A qa1561 page for further details: http://developer.apple.com/iphone/library/qa/qa2008/qa1561.html
using UnityEngine;
using System.Collections;
public class example : MonoBehaviour {
void Update() {
if (Input.GetKey("escape"))
Application.Quit();
}
}
'Unity3D' 카테고리의 다른 글
유니티 안드로이드 인앱결제 (0) | 2012.11.16 |
---|---|
ByteArray To String , String To ByteArray (0) | 2012.11.08 |
유니티 멀티게임 테스트 - 1 (1) | 2012.11.08 |
HideInInspector (0) | 2012.11.02 |
RequireComponent (0) | 2012.11.02 |