Skip to content

Commit

Permalink
공부할 부분 주석 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
minjun-ludigames2019 committed Sep 23, 2024
1 parent fac2f1a commit ade9b4a
Show file tree
Hide file tree
Showing 5 changed files with 11,048 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .vscode/extensions.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
{
"recommendations": [
"visualstudiotoolsforunity.vstuc"
]
}
10 changes: 10 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "Attach to Unity",
"type": "vstuc",
"request": "attach"
}
]
}
60 changes: 60 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": true,
"**/.vs": true,
"**/.gitmodules": true,
"**/.vsconfig": true,
"**/*.booproj": true,
"**/*.pidb": true,
"**/*.suo": true,
"**/*.user": true,
"**/*.userprefs": true,
"**/*.unityproj": true,
"**/*.dll": true,
"**/*.exe": true,
"**/*.pdf": true,
"**/*.mid": true,
"**/*.midi": true,
"**/*.wav": true,
"**/*.gif": true,
"**/*.ico": true,
"**/*.jpg": true,
"**/*.jpeg": true,
"**/*.png": true,
"**/*.psd": true,
"**/*.tga": true,
"**/*.tif": true,
"**/*.tiff": true,
"**/*.3ds": true,
"**/*.3DS": true,
"**/*.fbx": true,
"**/*.FBX": true,
"**/*.lxo": true,
"**/*.LXO": true,
"**/*.ma": true,
"**/*.MA": true,
"**/*.obj": true,
"**/*.OBJ": true,
"**/*.asset": true,
"**/*.cubemap": true,
"**/*.flare": true,
"**/*.mat": true,
"**/*.meta": true,
"**/*.prefab": true,
"**/*.unity": true,
"build/": true,
"Build/": true,
"Library/": true,
"library/": true,
"obj/": true,
"Obj/": true,
"Logs/": true,
"logs/": true,
"ProjectSettings/": true,
"UserSettings/": true,
"temp/": true,
"Temp/": true
},
"dotnet.defaultSolution": "20242ndGameTeam2.sln"
}
5 changes: 5 additions & 0 deletions Assets/PlayerMovement.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

public class PlayerMovement : MonoBehaviour
{
/*접근 지정자 or 접근 제한자
public , private, protected 공부해오기
유니티 물리 rigidbody2D
Body Type에 다이나믹 키네마틱 스테틱 차이 알아오기 */
public float moveSpeed = 5f;
public float rollSpeed = 10f; // 구르기 시 속도
public float rollDuration = 0.5f; // 구르기 지속 시간
Expand Down
Loading

0 comments on commit ade9b4a

Please sign in to comment.