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