{"id":25001617,"url":"https://github.com/trymorez/unity-retro-game-series-01","last_synced_at":"2026-04-30T10:39:05.090Z","repository":{"id":271698575,"uuid":"914295577","full_name":"trymorez/unity-retro-game-series-01","owner":"trymorez","description":"Unity Retro Game Series - 1","archived":false,"fork":false,"pushed_at":"2025-01-28T09:18:40.000Z","size":44315,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-15T05:50:14.497Z","etag":null,"topics":["csharp","game","retro-games","unity"],"latest_commit_sha":null,"homepage":"","language":"C#","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/trymorez.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2025-01-09T10:16:54.000Z","updated_at":"2025-01-28T09:18:43.000Z","dependencies_parsed_at":"2025-01-09T11:27:03.928Z","dependency_job_id":"4675e631-2e06-46c3-855a-3f197b2e0d4b","html_url":"https://github.com/trymorez/unity-retro-game-series-01","commit_stats":null,"previous_names":["trymorez/unity-space-invaders-clone","trymorez/unity-retro-game-series-01"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/trymorez/unity-retro-game-series-01","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trymorez%2Funity-retro-game-series-01","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trymorez%2Funity-retro-game-series-01/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trymorez%2Funity-retro-game-series-01/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trymorez%2Funity-retro-game-series-01/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/trymorez","download_url":"https://codeload.github.com/trymorez/unity-retro-game-series-01/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/trymorez%2Funity-retro-game-series-01/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32462304,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["csharp","game","retro-games","unity"],"created_at":"2025-02-04T20:37:19.088Z","updated_at":"2026-04-30T10:39:05.062Z","avatar_url":"https://github.com/trymorez.png","language":"C#","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# Space Invader Clone V 1.27\n\nI created a retro arcade game Space Invaders clone using Unity 6.0. My goal was to implement it using Scriptable Objects, Object Pools, and the Observer pattern.\n\n- Recommended Unity version: Unity 6 (6000.0.32f1 and later)\n\n[**[Play Game!!!]**](https://trymorez.github.io/unity-retro-game-series-01/Build/index.html)\n\n## Screenshots\n\n![screenshot](Assets/Screenshot/Screenshot01.png)\n![screenshot](Assets/Screenshot/Screenshot02.png)\n\n## Version History\n**V 1.27 - (2025-01-18)**\n- Fixed a bug where the player occasionally continued moving in the original direction after being destroyed\n\n**V 1.26 - (2025-01-16)**\n- Cleaned up the code and made it easier to read\n\n**V 1.25 - (2025-01-15)**\n- Fixed a bug where UFOs sometimes would not respawn\n\n**V 1.2 - (2025-01-14)**\n- UFO has been added to game\n- All essential game logic have been implemented\n\n**V 1.1 - (2025-01-14)**\n- Level data has been implemented using Scriptable Objects\n\n**V 1.0 - (2025-01-14)**\n- Level progression has been implemented (not completed yet)\n- Fixed several bugs related to resource pool management\n\n**V 0.9 - (2025-01-13)**\n- Now, invaders can attack the player with missiles.\n- The player life routine has been implemented (default is 3 lives)\n\n**V 0.8 - (2025-01-13)**\n- The intro screen has been implemented.\n- Fixed a bug where the player's laser sometimes disappears inappropriately.\n- Changed the Rigidbody2D of the bunker to static and removed the bunker script (this will improve performance and reduce bugs).\n\n**V 0.7 - (2025-01-12)**\n- Score and high score implemented\n\n**V 0.6 - (2025-01-12)**\n- Sound effects have been added\n- As the number of invaders decreases, the speed increases.\n- Slightly reduced the size of the invader\n\n**V 0.5 - (2025-01-11)**\n- Animations have been added to invaders\n- Invaders now move correctly at the edge of screen\n\n**V 0.4 - (2025-01-11)**\n- Colors have been applied to the invaders and bunkers\n- Testing the basic movement of the invaders\n\n**V 0.3 - (2025-01-10)**\n- Invaders pool implemented (using dictionary and queue )\n- Testing invaders spawning routine\n- Testing shooting down invaders routine\n\n**V 0.2 - (2025-01-10)**\n- Now player ship can fire laser\n- Laser object pool impremented\n- Partially destructable bunker implemented\n\n**V 0.1 - (2025-01-09)**\n- First version\n- Player ship movement test\n- Asset test\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrymorez%2Funity-retro-game-series-01","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftrymorez%2Funity-retro-game-series-01","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftrymorez%2Funity-retro-game-series-01/lists"}