Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ubuntu
- 다이어트
- PyQt5
- IOS
- sqlite
- PyQt
- javascript
- 유니티
- MySQL
- MS-SQL
- Linux
- Excel
- mssql
- 리눅스
- GIT
- ASP
- port
- swift
- node.js
- flutter
- tensorflow
- Unity
- python
- PER
- urllib
- 날짜
- pandas
- 함수
- 라즈베리파이
- 맛집
Archives
목록2018/03/18 (1)
아미(아름다운미소)
유니티로 게임을 개발시 해당키를 눌렀을때 일정범위 만큼 움직여야 할 경우 Translate 함수를 사용합니다.간단한 예제입니다. void Update () { if (Input.GetKey (KeyCode.LeftArrow) == true) { this.GetComponent ().Translate (-0.05f, 0, 0); } if (Input.GetKey (KeyCode.RightArrow) == true) { this.GetComponent ().Translate (0.05f, 0, 0); } if (Input.GetKey (KeyCode.UpArrow) == true) { this.GetComponent ().Translate (0, 0.05f, 0); } if (Input.GetKey (Key..
랭귀지/Unity
2018. 3. 18. 09:30