반응형
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 |
Tags
- TCP 네트워크 방식의 연결
- 비행기 모드
- 변경된 정보
- End of Darkness
- 소캣(Socket)
- 게임
- 스랄 특성
- game
- php 홈디렉토리 변경방법
- 아이패드
- tcp
- 컬렉션 프레임
- unity
- 에셋
- 집 정리
- 명령어
- 안드로이드
- 나지보 특성
- 안드로이드 Application Lifecycle
- 아이폰
- tcp네트워크
- 어플
- 자바
- 히오스
- 포트(Port)
- 리눅스
- 기업의 행포
- 나지보
- 벨팡
- Collection Framework
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