Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
af2cb78
Project Creation
Umair-Khan575 May 13, 2026
58b13a7
WIP: Adding Character Assets
Umair-Khan575 May 13, 2026
c6082e8
WIP: Adding Floor
Umair-Khan575 May 18, 2026
f21344d
WIP: Enemy
Umair-Khan575 May 20, 2026
e2b5ec0
WIP: Point System
Umair-Khan575 Jun 1, 2026
4b8d7ea
WIP: Branches
Umair-Khan575 Jun 10, 2026
2df6b1d
WIP: Collectible
Umair-Khan575 Jun 10, 2026
f30f373
WIP: Collectable
Umair-Khan575 Jun 15, 2026
b343376
wip - COLLECTABLE
Umair-Khan575 Jun 15, 2026
dd30cfa
WIP: Enemy
Umair-Khan575 Jun 17, 2026
d9288a3
WIP: EnemyMovement
Umair-Khan575 Jun 18, 2026
7588b3f
WIP: EnemyPatrol
Umair-Khan575 Jun 24, 2026
94b716e
WIP: Enemy Patrol
Umair-Khan575 Jun 29, 2026
8e1f1a6
Update Demo.unity
Umair-Khan575 Jun 29, 2026
99057b1
WIP: Animation
Umair-Khan575 Jul 1, 2026
4da4a0c
WIP: Jump Animation
Umair-Khan575 Jul 22, 2026
da7fc44
WIP: Tilemap Background
Umair-Khan575 Jul 27, 2026
838d969
WIP: Tilemap
Umair-Khan575 Jul 30, 2026
6e19f6f
WIP: Tilemap
Umair-Khan575 Jul 30, 2026
6fe5e65
WIP: Main Menu
Umair-Khan575 Aug 2, 2026
0973dd1
WIP: Main Menu
Umair-Khan575 Aug 5, 2026
b6819f4
WIP: Main Menu
Umair-Khan575 Aug 10, 2026
d2a129d
WIP: Main Menu
Umair-Khan575 Aug 12, 2026
233858a
WIP: EnemyChase
Umair-Khan575 Aug 16, 2026
4bbbc5d
WIP: Enemy
Umair-Khan575 Aug 19, 2026
f9fa77c
WIP: Enemy
Umair-Khan575 Aug 26, 2026
e093677
git add README.md
Umair-Khan575 Aug 27, 2026
3376269
WIP: Documentation
Umair-Khan575 Aug 30, 2026
b84bd21
WIP:- Animation
Umair-Khan575 Sep 2, 2026
8625a7c
WIP: In-game Audio
Umair-Khan575 Sep 7, 2026
48510bf
WIP: Audio
Umair-Khan575 Sep 10, 2026
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.
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"
}
]
}
117 changes: 59 additions & 58 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,59 +1,60 @@
{
"files.exclude": {
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/.vscode": false,
"**/.vs": true,
"**/build": true,
"**/Library": true,
"**/Temp": true,
"**/Obj": true,
"**/Logs": true,
"**/UserSettings": true
},
"files.watcherExclude": {
"**/Library/**": true,
"**/Temp/**": true,
"**/Obj/**": true,
"**/build/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/UserSettings/**": true
},
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": true
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.rulers": [100],
"editor.snippetSuggestions": "top",
"C_Cpp.updateChannel": "Insiders",
"csharp.format.enable": true,
"csharp.suppressDotnetInstallWarning": true,
"csharp.enableDecompilationSupport": true,
"omnisharp.useModernNet": true,
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.organizeImportsOnFormat": true,
"omnisharp.enableImportCompletion": true,
"omnisharp.enableMsBuildLoadProjectsOnDemand": true,
"omnisharp.loggingLevel": "information",
"omnisharp.maxProjectFileCountForDiagnosticAnalysis": 1000,
"csharp.referencesCodeLens.enabled": true,
"csharp.testsCodeLens.enabled": true,
"csharp.showReferencesCodeLens": true,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Default Dark+",
"window.restoreWindows": "preserve",
"explorer.compactFolders": false,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"github.copilot.enable": {
"*": true,
"csharp": false
},
"chat.agent.enabled": false
}
"files.exclude": {
"**/.classpath": true,
"**/.factorypath": true,
"**/.project": true,
"**/.settings": true,
"**/.vscode": false,
"**/.vs": true,
"**/build": true,
"**/Library": true,
"**/Temp": true,
"**/Obj": true,
"**/Logs": true,
"**/UserSettings": true
},
"files.watcherExclude": {
"**/Library/**": true,
"**/Temp/**": true,
"**/Obj/**": true,
"**/build/**": true,
"**/.git/objects/**": true,
"**/.git/subtree-cache/**": true,
"**/UserSettings/**": true
},
"editor.fontSize": 16,
"editor.formatOnSave": true,
"editor.codeActionsOnSave": {
"source.fixAll": "explicit"
},
"editor.tabSize": 4,
"editor.insertSpaces": true,
"editor.rulers": [100],
"editor.snippetSuggestions": "top",
"C_Cpp.updateChannel": "Insiders",
"csharp.format.enable": true,
"csharp.suppressDotnetInstallWarning": true,
"csharp.enableDecompilationSupport": true,
"omnisharp.useModernNet": true,
"omnisharp.enableRoslynAnalyzers": true,
"omnisharp.enableEditorConfigSupport": true,
"omnisharp.organizeImportsOnFormat": true,
"omnisharp.enableImportCompletion": true,
"omnisharp.enableMsBuildLoadProjectsOnDemand": true,
"omnisharp.loggingLevel": "information",
"omnisharp.maxProjectFileCountForDiagnosticAnalysis": 1000,
"csharp.referencesCodeLens.enabled": true,
"csharp.testsCodeLens.enabled": true,
"csharp.showReferencesCodeLens": true,
"workbench.iconTheme": "vscode-icons",
"workbench.colorTheme": "Dark+",
"window.restoreWindows": "preserve",
"explorer.compactFolders": false,
"terminal.integrated.defaultProfile.windows": "Command Prompt",
"github.copilot.enable": {
"*": true,
"csharp": false
},
"chat.agent.enabled": false,
"dotnet.defaultSolution": "2026CT_UNKNOWN_Umair.K.sln"
}
8 changes: 8 additions & 0 deletions Assets/20 Static Sprites.meta

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

8 changes: 8 additions & 0 deletions Assets/20 Static Sprites/Demo.meta

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

Loading