반응형
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
- tcp네트워크
- 집 정리
- 안드로이드
- 자바
- 아이폰
- Collection Framework
- TCP 네트워크 방식의 연결
- 안드로이드 Application Lifecycle
- 명령어
- 나지보 특성
- 소캣(Socket)
- game
- 에셋
- 스랄 특성
- 리눅스
- 히오스
- php 홈디렉토리 변경방법
- tcp
- 포트(Port)
- 벨팡
- 아이패드
- 기업의 행포
- 비행기 모드
- unity
- 컬렉션 프레임
- 변경된 정보
- 어플
- End of Darkness
- 나지보
- 게임
Archives
- Today
- Total
목록모든 정보 (407)
Do Something IT
양제팀 원격 정보 Hg 접속 정보
보호되어 있는 글입니다.
Project/SkillHunter
2015. 8. 1. 12:22
유니티 모바일 터치 Tutorial
Unity3D
2015. 7. 22. 10:56
딱 한가지 동작으로 전신 교정하기
http://navercast.naver.com/magazine_contents.nhn?rid=1094&contents_id=76869
아낙라이프/아낙의 건강한 생활
2015. 7. 16. 20:16
숫자 카운팅
아래와 같이 작성하여 숫자 카운팅을 나타 낼수 있다. 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)) { StopCoroutin..
Unity3D
2015. 7. 8. 16:20