Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
c6f74d5
Add comment in EnterPoint.cs
yachastein Jan 12, 2026
37ebb36
Update EnterPoint.cs
yachastein Jan 12, 2026
8bcffc7
DoGukan Coment
yachastein Jan 12, 2026
320c14a
Merge remote-tracking branch 'origin/main'
yachastein Jan 12, 2026
718da80
Add comment to EnterPoint.cs
yachastein Jan 12, 2026
8dba26f
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Jan 12, 2026
27dfd78
How are you
yachastein Jan 12, 2026
2d1aa16
test #2
yachastein Jan 12, 2026
6bf8f9d
Practise #2
yachastein Jan 14, 2026
2622960
HW Unit Shooting Mechanics
yachastein Jan 14, 2026
7c94296
HW Select Closest Targets
yachastein Jan 24, 2026
49da472
HW Select Closest Targets
yachastein Jan 24, 2026
01670d9
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Feb 24, 2026
393e570
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Feb 24, 2026
7f2fe91
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Mar 3, 2026
45746c9
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Mar 3, 2026
aba6fb0
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Apr 18, 2026
e488df9
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Apr 18, 2026
ad12db3
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Apr 28, 2026
426d740
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein Apr 28, 2026
e161d51
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein May 4, 2026
b8351d2
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein May 4, 2026
8ad1559
Merge branch 'main' of https://github.com/yachastein/CSharpMainProject
yachastein May 12, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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"
}
]
}
55 changes: 55 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"files.exclude": {
"**/.DS_Store": true,
"**/.git": 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
},
"dotnet.defaultSolution": "CSharpMainProject.sln"
}
2 changes: 1 addition & 1 deletion Assets/Resources/PlayerUnits/PlayerUnit3.prefab
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ MonoBehaviour:
_maxHealth: 400
_brainUpdateDelay: 0.25
_moveDelay: 0.25
_attackDelay: 0.75
_attackDelay: 0.15
_attackRange: 3.5
_shotsPerTarget: 1
_targetsInVolley: 1
Expand Down
Loading