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
													
											
												
												- MySQL
- 날짜
- 리눅스
- IOS
- sqlite
- node.js
- 유니티
- PER
- mssql
- Excel
- tensorflow
- Unity
- 맛집
- ASP
- GIT
- MS-SQL
- 라즈베리파이
- 다이어트
- flutter
- urllib
- PyQt
- Linux
- PyQt5
- 함수
- swift
- python
- javascript
- ubuntu
- pandas
- port
													Archives
													
											
											
											
											목록2D 점프 (1)
아미(아름다운미소)
			
			
				[Unity] 2D 점프
				
	
	
               
           
					
					
					
					
					
					
						
					
				Unity 2D 점프 using System.Collections; using System.Collections.Generic; using UnityEngine; public class Jump : MonoBehaviour { Rigidbody2D rgdy; public float JP = 10f; bool isJumping = false; // Use this for initialization void Start () { rgdy = gameObject.GetComponent(); } // Update is called once per frame void Update () { if(Input.GetKeyDown(KeyCode.Space)) isJumping = true; } private void Fi..
				랭귀지/Unity
				
				2018. 4. 5. 09:30