반응형
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
- 나지보 특성
- 게임
- 명령어
- 나지보
- php 홈디렉토리 변경방법
- game
- 안드로이드
- 벨팡
- Collection Framework
- 자바
- 에셋
- 컬렉션 프레임
- 비행기 모드
- unity
- tcp네트워크
- 리눅스
- 집 정리
- 히오스
- 스랄 특성
- 어플
- TCP 네트워크 방식의 연결
- End of Darkness
- 포트(Port)
- 아이폰
- tcp
- 변경된 정보
- 기업의 행포
- 소캣(Socket)
- 아이패드
- 안드로이드 Application Lifecycle
Archives
- Today
- Total
Do Something IT
숫자 카운팅 본문
반응형
아래와 같이 작성하여 숫자 카운팅을 나타 낼수 있다.
using UnityEngine; using System.Collections; public class ScoreCounter : MonoBehaviour { public float duration = 0.5f; int score = 0; void OnGUI () { GUIButtonCountTo (0); GUIButtonCountTo (5000); GUIButtonCountTo (20000); GUILayout.Label ("Current score is " + score); } void GUIButtonCountTo (int target) { if (GUILayout.Button ("Count to " + target)) { StopCoroutine ("CountTo"); StartCoroutine ("CountTo", target); } } IEnumerator CountTo (int target) { int start = score; for (float timer = 0; timer < duration; timer += Time.deltaTime) { float progress = timer / duration; score = (int)Mathf.Lerp (start, target, progress); yield return null; } score = target; } }
반응형
'Unity3D' 카테고리의 다른 글
비주얼 스튜디오 편한 단축키 (0) | 2015.08.21 |
---|---|
유니티 모바일 터치 Tutorial (0) | 2015.07.22 |
[Unity3D]에디터 빌드 플렛폼 셋팅 정보 가져오기 (0) | 2015.06.11 |
[Unity3D]Asset의 Import, Reimport, Delete, Move 정보 찾기 (0) | 2015.06.10 |
[Unity] DepthMask (0) | 2015.05.20 |
Comments