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
- Excel
- MS-SQL
- PyQt
- javascript
- 날짜
- sqlite
- IOS
- flutter
- ASP
- port
- python
- Linux
- MySQL
- swift
- 라즈베리파이
- Unity
- 유니티
- GIT
- ubuntu
- mssql
- 맛집
- tensorflow
- pandas
- 다이어트
- urllib
- 함수
- PER
- node.js
- 리눅스
- PyQt5
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