{"id":51556925,"url":"https://github.com/tolstoyj/unity-2d-beginner-refresher","last_synced_at":"2026-07-10T06:01:13.558Z","repository":{"id":366407511,"uuid":"1276185043","full_name":"Tolstoyj/unity-2d-beginner-refresher","owner":"Tolstoyj","description":"Beginner Unity 2D tutorial project: Day 1 player setup, idle animation, prefab, and movement.","archived":false,"fork":false,"pushed_at":"2026-06-21T16:44:25.000Z","size":66,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-06-21T18:21:04.032Z","etag":null,"topics":["beginner","csharp","gamedev","tutorial","unity","unity2d"],"latest_commit_sha":null,"homepage":null,"language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Tolstoyj.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-06-21T16:41:11.000Z","updated_at":"2026-06-21T16:44:24.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/Tolstoyj/unity-2d-beginner-refresher","commit_stats":null,"previous_names":["tolstoyj/unity-2d-beginner-refresher"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/Tolstoyj/unity-2d-beginner-refresher","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tolstoyj%2Funity-2d-beginner-refresher","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tolstoyj%2Funity-2d-beginner-refresher/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tolstoyj%2Funity-2d-beginner-refresher/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tolstoyj%2Funity-2d-beginner-refresher/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Tolstoyj","download_url":"https://codeload.github.com/Tolstoyj/unity-2d-beginner-refresher/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Tolstoyj%2Funity-2d-beginner-refresher/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":35322489,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-07-10T02:00:06.465Z","response_time":60,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["beginner","csharp","gamedev","tutorial","unity","unity2d"],"created_at":"2026-07-10T06:01:10.450Z","updated_at":"2026-07-10T06:01:13.552Z","avatar_url":"https://github.com/Tolstoyj.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Unity 2D Beginner Refresher\n\nA beginner-friendly Unity 2D project built as a step-by-step learning series.\n\nThis repository currently contains **Day 1**, where we set up a simple 2D scene, created a player object, added a sample ground, built a simple idle animation, saved the player as a prefab, and added keyboard movement with a C# script.\n\n## Project Info\n\n- Unity version: `6000.4.10f1`\n- Render setup: Universal Render Pipeline 2D\n- Input package: Unity Input System\n- First scene: `Assets/Scenes/Day1.unity`\n\n## Day 1 Features\n\n- Player object in the scene\n- Sample ground object\n- Organized Unity folders:\n  - `Animations`\n  - `Materials`\n  - `Prefabs`\n  - `Scenes`\n  - `Scripts`\n  - `Settings`\n  - `Sprites`\n- `PlayerMovement2D` script for WASD and arrow-key movement\n- Simple `Player_Idle` animation\n- `Player` prefab saved in `Assets/Prefabs`\n\n## Learning Branches\n\nEach completed tutorial day is saved as its own Git branch so students can jump to that day's exact project state.\n\nCurrent branches:\n\n- `main` - latest stable tutorial state\n- `day-1` - Day 1 player setup, idle animation, prefab, and movement\n\nTo get a specific day:\n\n```bash\ngit fetch --all\ngit checkout day-1\n```\n\nFuture days will follow the same pattern:\n\n```text\nday-2\nday-3\nday-4\n```\n\n## How to Open the Project\n\n1. Clone or download this repository.\n2. Open Unity Hub.\n3. Choose **Add project from disk**.\n4. Select this project folder.\n5. Open it with Unity `6000.4.10f1` or a compatible Unity 6 version.\n6. Open `Assets/Scenes/Day1.unity`.\n7. Press **Play**.\n\n## Controls\n\nUse either control scheme:\n\n- Move left: `A` or `Left Arrow`\n- Move right: `D` or `Right Arrow`\n- Move up: `W` or `Up Arrow`\n- Move down: `S` or `Down Arrow`\n\n## Main Script\n\nThe first gameplay script is:\n\n```text\nAssets/Scripts/PlayerMovement2D.cs\n```\n\nIt reads keyboard input every frame, builds a movement direction, normalizes diagonal movement, and moves the player with `Time.deltaTime` so movement stays smooth across different frame rates.\n\n## Tutorial Notes\n\nThe lesson notes for Day 1 are in:\n\n```text\nDocs/Day-01.md\n```\n\n## Next Steps\n\nFuture days can build on this project by adding collisions, better animation states, camera follow, tilemaps, collectibles, enemies, and a small playable level.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftolstoyj%2Funity-2d-beginner-refresher","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftolstoyj%2Funity-2d-beginner-refresher","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftolstoyj%2Funity-2d-beginner-refresher/lists"}