Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
24 commits
Select commit Hold shift + click to select a range
170ac7f
inital commit of project and making square moving left and right with…
Jan 9, 2026
dab0982
made it relative to screen width
Jan 9, 2026
1276178
week 2 changes
AchillesTomasic Jan 16, 2026
d13a66a
hidding all the demo stuff
AchillesTomasic Jan 16, 2026
657838e
Rollover + animation stuff completed ( easy)
AchillesTomasic Jan 16, 2026
9c8af66
rollover + animation (easy)
AchillesTomasic Jan 16, 2026
1fbf34c
start of ball
AchillesTomasic Jan 16, 2026
1e7ba1d
ball start
AchillesTomasic Jan 16, 2026
ac58484
teleport and bouncyball gyms created for one object
chili06 Jan 17, 2026
044e461
Assets implimented properly for teleport and bouncyball
AchillesTomasic Jan 17, 2026
45e5453
Completed the floating ocean gym and searching gym
AchillesTomasic Jan 17, 2026
8461abd
create the player character and the first sprite box, created functio…
AchillesTomasic Jan 21, 2026
ad82902
week 3 lesson
AchillesTomasic Jan 23, 2026
a20eff1
changes ending class week 3
AchillesTomasic Jan 23, 2026
504edd9
tank gym
AchillesTomasic Jan 23, 2026
95aea97
Snapshot 2 - Changes to the note script created to add modularity. a…
AchillesTomasic Jan 24, 2026
8767757
Screenshot 3- Working Score Board Using gameObject Position Changes
AchillesTomasic Jan 25, 2026
feb87d7
Changes spawn so that it moves off screen properly
AchillesTomasic Jan 25, 2026
27fa1a6
Created the title screen and some effects
AchillesTomasic Jan 26, 2026
234c016
Fixed transition and note pos
AchillesTomasic Jan 26, 2026
817a385
removed all instances of refrencing scripts as variables
AchillesTomasic Jan 27, 2026
1b33e50
Added all of the images and bounce script
AchillesTomasic Jan 28, 2026
12b2e76
merge into main
AchillesTomasic Jan 29, 2026
5951dbd
Fixed merging issues so that week 3 content also appears
AchillesTomasic Jan 29, 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"
}
]
}
70 changes: 70 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
{
"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
},
"files.associations": {
"*.asset": "yaml",
"*.meta": "yaml",
"*.prefab": "yaml",
"*.unity": "yaml",
},
"explorer.fileNesting.enabled": true,
"explorer.fileNesting.patterns": {
"*.sln": "*.csproj",
},
"dotnet.defaultSolution": "Weeks1-3.sln"
}
Loading