반응형
Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- 비행기 모드
- 아이패드
- 나지보
- 집 정리
- 포트(Port)
- game
- php 홈디렉토리 변경방법
- Collection Framework
- 자바
- 에셋
- End of Darkness
- 소캣(Socket)
- 히오스
- unity
- 게임
- tcp네트워크
- 어플
- 명령어
- 나지보 특성
- 스랄 특성
- 기업의 행포
- 리눅스
- 아이폰
- 컬렉션 프레임
- 변경된 정보
- 안드로이드 Application Lifecycle
- tcp
- 안드로이드
- TCP 네트워크 방식의 연결
- 벨팡
Archives
- Today
- Total
Do Something IT
아이폰 안드로이드 플렛폼 Indicator loading 본문
반응형
Handheld.StartActivityIndicator
static function StartActivityIndicator(): void;
Description
Starts os activity indicator.
Please be warned that this informs os ui system to start. For actual animation to take effect you usually need to wait till the end of this frame. So if you want activity indicator to be animated during synced operation, please use coroutines.
IEnumerator Load() { #if UNITY_IPHONE Handheld.SetActivityIndicatorStyle(iOSActivityIndicatorStyle.Gray); #elif UNITY_ANDROID Handheld.SetActivityIndicatorStyle(AndroidActivityIndicatorStyle.Small); #endif Handheld.StartActivityIndicator(); yield return new WaitForSeconds(0); Application.LoadLevel(1); } void OnGUI() { if( GUI.Button(new Rect(10, 10, 200, 200), "Load!") ) StartCoroutine(Load()); }
반응형
'Unity3D' 카테고리의 다른 글
애셋번들(AssetBundle) (0) | 2013.11.08 |
---|---|
[Unity3D]Mecanim (0) | 2013.11.06 |
플래시 영상 리소스를 유니티 또는 HTML5 게임 개발에 활용하기 (0) | 2013.10.10 |
[Unity] xml 사용 (0) | 2013.09.25 |
엑셀 자료구조 설계 누가 해야할까? (0) | 2013.09.24 |
Comments