{"id":18985077,"url":"https://github.com/o3de/startergame-assets","last_synced_at":"2026-02-16T16:07:12.305Z","repository":{"id":248603816,"uuid":"821549973","full_name":"o3de/startergame-assets","owner":"o3de","description":"Repository for all open sourced StarterGame assets (LY + O3DE conversions)","archived":false,"fork":false,"pushed_at":"2025-02-13T21:51:37.000Z","size":8914,"stargazers_count":7,"open_issues_count":1,"forks_count":2,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-02-13T22:34:36.466Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"CMake","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/o3de.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":"2024-06-28T19:55:06.000Z","updated_at":"2025-02-13T21:51:45.000Z","dependencies_parsed_at":"2024-07-16T02:52:46.740Z","dependency_job_id":"c930294e-2003-411d-83f9-bfb035be19a2","html_url":"https://github.com/o3de/startergame-assets","commit_stats":null,"previous_names":["o3de/startergame-assets"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o3de%2Fstartergame-assets","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o3de%2Fstartergame-assets/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o3de%2Fstartergame-assets/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/o3de%2Fstartergame-assets/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/o3de","download_url":"https://codeload.github.com/o3de/startergame-assets/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":239993961,"owners_count":19730779,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-11-08T16:24:31.994Z","updated_at":"2025-10-07T17:54:56.926Z","avatar_url":"https://github.com/o3de.png","language":"CMake","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cu\u003eSupported o3de versions\u003c/u\u003e : **24.09**\n\n# Starter Game : Port to O3DE of the lumberyard project\n\n![demo](doc/demo.gif) \n\nThis project aims to port to O3DE the [\"Starter Game\"](https://aws.amazon.com/blogs/gametech/now-available-starter-game/) project. It can be used to stress test the features of O3DE and see how they compare utility-wise and performance-wise with Lumberyard.\n\nIt was originally developped by AWS in collaboration with [Climax studio](http://www.climaxstudios.com/) for the [Lumberyard Engine](https://aws.amazon.com/lumberyard/) and showcased during the GDC 2017. This project contains a large map with vegetation and water, interactive elements, scripts, animations, a combat system, AI scattered around the map and a UI with objective marker.\n\nThe goal is to port and adapt all of these features to be as close as possible to the Lumberyard project. You can check the current state of the port by browsing below.\n\n## Prerequisites\n\nYou need to build or [install O3DE engine](https://o3de.org/download/).\n\nYou need to [install git with lfs support](https://git-scm.com/downloads), and [setup a token on your github account](https://www.docs.o3de.org/docs/welcome-guide/setup/setup-from-github/#configure-credentials-for-git-lfs). Needed as the repository uses Git LFS, the \"Download ZIP\" button will not download assets.\n\n## How to run\n\n1. Clone the github repository (`git clone https://github.com/o3de/startergame-assets.git`). When prompted to authenticate, use your github username and the token as password.\n2. Launch O3DE. It will open the Project manager. Click on the **New Project** button then **Open Existing Project** option.\n3. Navigate to the cloned repository. Open the `Project` folder. The project should now be registered.\n4. Click on the **Build Project** button, located on the **Starter Game** image.\n\n![project](doc/project.png)\n\n5. Once the project has been built successfully, use the **Open Editor** button.\n6. The asset pre-processor will run for a bit. Once it is over you will be welcomed with the **Open a Level** window. Pick the first one.\n\n### Initial setup\n\nUpon opening the level for the first time, the viewport will look empty. This is because the map is not located at the default camera position. Simply right click in the \"entity outliner\" on an entity to \"Find Selected Entities in Viewport\". The camera will travel there and you will be able to look at the map.\n\n![go to entities](doc/go-to-entities.png)\n\nThe map being quite big, you will likely want to increase the camera far plane. To do so, go to \"Edit/Editor Settings/Global Preferences\" top menu, and under \"Viewport\" set the \"Perspective Far Plane\" from 100 to 1500. \n\n![settings](doc/settings.png)\n\n## How to contribute ?\n\nYou can follow [this documentation](https://development--o3deorg.netlify.app/docs/learning-guide/tutorials/lumberyard-to-o3de/) to understand how to launch the starter game project on Lumberyard. This will be needed to compare the feature and behavior between the original game and the port. \n\nAs many assets were not converted yet, they can either be created from scratch or converted using an improved version of the conversion scripts. To simplify the maintenance, we try to match as close as possible the file layout used by the original projects (most content placed in the gems, prefabs still using slice folders).\n\nSome files are using git lfs, you can modify them but in order to push your changes, even on a fork, you need to be a contributor of this project.\n\n### What is the current state of the port ?\n\n- [x] Terrain layout\n- [x] Objects placed at the correct positions\n- [x] Import most of the materials\n- [ ] Skybox\n- [ ] Lighting\n- [ ] Animated water\n- [ ] Particles (birds, water splash)\n- [ ] Audio\n- [ ] Vegetation (grass)\n- [ ] User Interface (quest marker, life, main menu)\n- [ ] Character movement (walk, jump, attack)\n- [ ] Weapons\n- [ ] AI wandering and attacking\n- [ ] Level scripting of interactive elements (doors)\n\n## License\n\nFor terms please see the LICENSE*.TXT file at the root of this distribution.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo3de%2Fstartergame-assets","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fo3de%2Fstartergame-assets","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fo3de%2Fstartergame-assets/lists"}