Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
9fe88e2
Create player animation states
komalkuru Feb 23, 2022
063d2bb
Create a script and add the Rigidbody component to the player character.
komalkuru Feb 23, 2022
2adfdef
Implement player controller Script
komalkuru Feb 25, 2022
0fd24de
Apply the horizontal movement
komalkuru Feb 25, 2022
1629a62
Bind Vertical input to jump the player up.
komalkuru Feb 25, 2022
3b36e5e
modified
komalkuru Feb 26, 2022
9d830e0
Merge pull request #4 from komalkuru/Feature3-Movement
komalkuru Feb 28, 2022
8b610e2
Implemented crouch animation
komalkuru Mar 2, 2022
1b11f4b
Implemented crouch and jump animation
komalkuru Mar 3, 2022
982e453
Implemented TileMap and Completed First Level
komalkuru Mar 7, 2022
887363e
Key Collectible
komalkuru Mar 9, 2022
f65aa22
Implementation of animated key
komalkuru Mar 9, 2022
cd0c71d
Player Death animation applied when the player touches the enemy and …
komalkuru Mar 11, 2022
3fbf27e
Merge pull request #5 from komalkuru/CrouchAnimation
komalkuru Mar 12, 2022
d340a88
Merge pull request #6 from komalkuru/Feature4-TileMapSetup
komalkuru Mar 12, 2022
6248a58
Merge pull request #7 from komalkuru/Feature5-Collectable
komalkuru Mar 12, 2022
11a72ee
Merge pull request #8 from komalkuru/Feature6-Enemy
komalkuru Mar 12, 2022
5cb8aa8
Added Lobby Scene
komalkuru Mar 14, 2022
27b9078
Added play and restart button
komalkuru Mar 14, 2022
4f41f8b
added 2nd Enemy on the same platform
komalkuru Mar 18, 2022
08f8ea7
Added Lock-Unlock Levels
komalkuru Mar 21, 2022
957ec59
The UI is displayed when the level is completed.
komalkuru Mar 21, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
56 changes: 56 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"files.exclude":
{
"**/.DS_Store":true,
"**/.git":true,
"**/.gitignore":true,
"**/.gitmodules":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,
"ProjectSettings/":true,
"temp/":true,
"Temp/":true
}
}
6 changes: 6 additions & 0 deletions .vsconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
{
"version": "1.0",
"components": [
"Microsoft.VisualStudio.Workload.ManagedGame"
]
}
574 changes: 305 additions & 269 deletions Assembly-CSharp-Editor.csproj

Large diffs are not rendered by default.

671 changes: 352 additions & 319 deletions Assembly-CSharp.csproj

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading