{"id":23516562,"url":"https://github.com/ambientrun/tutorial","last_synced_at":"2026-01-25T01:02:17.284Z","repository":{"id":191612851,"uuid":"679151296","full_name":"AmbientRun/Tutorial","owner":"AmbientRun","description":"Each chapter is one branch in order to get rust analyser working","archived":false,"fork":false,"pushed_at":"2023-08-30T10:49:36.000Z","size":2359,"stargazers_count":1,"open_issues_count":3,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-05-13T23:49:56.614Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":null,"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/AmbientRun.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}},"created_at":"2023-08-16T07:55:53.000Z","updated_at":"2024-01-07T19:42:24.000Z","dependencies_parsed_at":"2023-08-30T17:41:44.608Z","dependency_job_id":"f7b7596f-8932-4480-818a-fc140be6e535","html_url":"https://github.com/AmbientRun/Tutorial","commit_stats":null,"previous_names":["ambientrun/tutorial"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/AmbientRun/Tutorial","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbientRun%2FTutorial","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbientRun%2FTutorial/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbientRun%2FTutorial/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbientRun%2FTutorial/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/AmbientRun","download_url":"https://codeload.github.com/AmbientRun/Tutorial/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/AmbientRun%2FTutorial/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28740396,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-24T22:12:27.248Z","status":"ssl_error","status_checked_at":"2026-01-24T22:12:10.529Z","response_time":89,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-12-25T15:14:07.682Z","updated_at":"2026-01-25T01:02:17.269Z","avatar_url":"https://github.com/AmbientRun.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# Ambient Getting Started Tutorial\n\nAmbient is a game engine written in Rust, focusing on modding and multiplayer features.\n\nIn this tutorial, we will write a simple shooting game from scratch, and in the process, we will show you the basic features of the engine, providing resources such as documentation, reference, examples, games, etc. Hopefully this will give you a good idea of how to use Ambient to make your own game.\n\n## Prerequisites\n\nRust 1.67 or later is required to build Ambient. You can install Rust by following the instructions on [rustup.rs](https://rustup.rs/).\n\nRust programming experience is not required to follow this tutorial, but it is recommended. If you are new to Rust, you can learn the basics of the language on [rust-lang.org](https://www.rust-lang.org/learn).\n\nAfter installing `rust`, you should be able to use command line tool including `rustup` and `cargo`.\n\nYou need to run `rustup target add --toolchain stable wasm32-wasi` in your Terminal. This will install the WebAssembly target for the WASI platform, which is required to build Ambient.\n\nThen you can use the `cargo install` command to install Ambient:\n\n```shell\ncargo install --git https://github.com/AmbientRun/Ambient.git --rev ad24915e58 --locked --force ambient\n```\n\nDone!\n\n\u003e If you prefer other methods for installation, see [here](https://ambientrun.github.io/Ambient/user/installing.html).\n\nIt's also recommended to setup your IDE for a better Ambient dev experience (see [here](https://ambientrun.github.io/Ambient/user/setting_up_ide.html)).\n\n## Tutorial structure\n\nThis tutorial is divided into several chapters. Each of them comes with a full Ambient project code with explainations. You can find them in each branch of this repository, or you can click the links below to see:\n\n- [Chapter 1: Project Structure](https://github.com/AmbientRun/Tutorial/tree/chapter-1-project-structure)\n- [Chapter 2: Colliders and Async](https://github.com/AmbientRun/Tutorial/tree/chapter-2-async)\n- [Chapter 3: Spawn query](https://github.com/AmbientRun/Tutorial/tree/chapter-3-spawn-query)\n- [Chapter 4: Message](https://github.com/AmbientRun/Tutorial/tree/chapter-4-message)\n- [Chapter 5: Input from users](https://github.com/AmbientRun/Tutorial/tree/chapter-5-input)\n- [Chapter 6: Move character with physics](https://github.com/AmbientRun/Tutorial/tree/chapter-6-physics-move-character)\n- [Chapter 7: Model import](https://github.com/AmbientRun/Tutorial/tree/chapter-7-model-import)\n- [Chapter 8: Animation](https://github.com/AmbientRun/Tutorial/tree/chapter-8-animation)\n- [Chapter 9: Bind a gun](https://github.com/AmbientRun/Tutorial/tree/chapter-9-bind-gun)\n- [Chapter 10: Bind the camera](https://github.com/AmbientRun/Tutorial/tree/chapter-10-bind-cam)\n- [Chapter 11: UI](https://github.com/AmbientRun/Tutorial/tree/chapter-11-ui)\n- [Chapter 12: Raycast](https://github.com/AmbientRun/Tutorial/tree/chapter-12-raycast)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambientrun%2Ftutorial","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fambientrun%2Ftutorial","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fambientrun%2Ftutorial/lists"}