{"id":31135932,"url":"https://github.com/abusch/bevy3dtest","last_synced_at":"2025-09-18T07:46:56.484Z","repository":{"id":313137201,"uuid":"843677649","full_name":"abusch/bevy3dtest","owner":"abusch","description":"Just messing around with Bevy","archived":false,"fork":false,"pushed_at":"2024-08-17T04:54:03.000Z","size":3142,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-09-16T13:23:32.854Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Rust","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/abusch.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":"2024-08-17T04:52:17.000Z","updated_at":"2024-08-17T04:54:08.000Z","dependencies_parsed_at":"2025-09-04T06:24:17.457Z","dependency_job_id":"02ee1e05-8b94-4348-b756-310b9e3b55da","html_url":"https://github.com/abusch/bevy3dtest","commit_stats":null,"previous_names":["abusch/bevy3dtest"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/abusch/bevy3dtest","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fbevy3dtest","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fbevy3dtest/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fbevy3dtest/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fbevy3dtest/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/abusch","download_url":"https://codeload.github.com/abusch/bevy3dtest/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/abusch%2Fbevy3dtest/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":275732108,"owners_count":25518090,"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","status":"online","status_checked_at":"2025-09-18T02:00:09.552Z","response_time":77,"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":[],"created_at":"2025-09-18T07:46:54.544Z","updated_at":"2025-09-18T07:46:56.470Z","avatar_url":"https://github.com/abusch.png","language":"Rust","funding_links":[],"categories":[],"sub_categories":[],"readme":"_Brought to you by the Bevy Jam working group._\n\n# Bevy Quickstart\n\nThis template is a great way to get started on a new [Bevy](https://bevyengine.org/) game—especially for a game jam!\nStart with a [basic project structure](#write-your-game) and [CI / CD](#release-your-game) that can deploy to [itch.io](https://itch.io).\nYou can [try this template in your web browser!](https://the-bevy-flock.itch.io/bevy-quickstart)\n\nDon't want to read through the whole README? [@ChristopherBiscardi](https://github.com/ChristopherBiscardi) made a video on how to use the template from start to finish:\n\n[\u003cimg src=\"./docs/thumbnail.png\" width=40% height=40% alt=\"A video tutorial for bevy_quickstart\"/\u003e](https://www.youtube.com/watch?v=ESBRyXClaYc)\n\n## Prerequisites\n\nWe assume that you know how to use Bevy already and have seen the [official Quick Start Guide](https://bevyengine.org/learn/quick-start/introduction/).\n\n## Create a new game\n\nInstall [`cargo-generate`](https://github.com/cargo-generate/cargo-generate) and run the following commands:\n\n```sh\ncargo generate TheBevyFlock/bevy_quickstart --branch cargo-generate\ngit branch --move main\n```\n\nThen [create a GitHub repository](https://github.com/new) and push your local repository to it.\n\n\u003cdetails\u003e\n  \u003csummary\u003eThis template can also be set up manually.\u003c/summary\u003e\n\nNavigate to the top of [this GitHub repository](https://github.com/TheBevyFlock/bevy_quickstart/) and select `Use this template \u003e Create a new repository`:\n\n![UI demonstration](./docs/readme-manual-setup.png)\n\nClone your new Github repository to a local repository and push a commit with the following changes:\n\n- Delete `LICENSE`, `README`, and `docs/` files.\n- Search for and replace instances of `bevy_quickstart` with the name of your project.\n- Adjust the `env` variables in [`.github/workflows/release.yaml`](./.github/workflows/release.yaml).\n\n\u003c/details\u003e\n\n## Write your game\n\nThe best way to get started is to play around with what you find in [`src/game/`](./src/game).\n\nThis template comes with a basic project structure that you may find useful:\n\n| Path                                     | Description                                           |\n|------------------------------------------|-------------------------------------------------------|\n| [`src/lib.rs`](./src/lib.rs)             | App setup                                             |\n| [`src/screen/`](./src/screen)            | Splash screen, title screen, playing screen, etc.     |\n| [`src/game/`](./src/game)                | Game mechanics \u0026 content (replace with your own code) |\n| [`src/ui/`](./src/ui)                    | Reusable UI widgets \u0026 theming                         |\n| [`src/dev_tools.rs`](./src/dev_tools.rs) | Dev tools for dev builds                              |\n\nFeel free to move things around however you want, though.\n\nIf you are new to Bevy, the patterns used in this template may look a bit weird at first glance.\nSee our [Design Document](./docs/design.md) for more information on how we structured the code and why.\n\n\u003e [!Tip]\n\u003e Be sure to check out the [3rd-party tools](./docs/tooling.md) we recommend!\n\n## Run your game\n\nRunning your game locally is very simple:\n\n- Use `cargo run` to run a native dev build.\n- Use [`trunk serve`](https://trunkrs.dev/) to run a web dev build.\n\nIf you're using [VS Code](https://code.visualstudio.com/), this template comes with a [`.vscode/tasks.json`](./.vscode/tasks.json) file.\n\n\u003cdetails\u003e\n  \u003csummary\u003eRun release builds\u003c/summary\u003e\n\n- Use `cargo run --profile release-native --no-default-features` to run a native release build.\n- Use `trunk serve --release --no-default-features` to run a web release build.\n\n\u003c/details\u003e\n\n\u003cdetails\u003e\n    \u003csummary\u003e(Optional) Improve your compile times\u003c/summary\u003e\n\n[`.cargo/config_fast_builds.toml`](./.cargo/config_fast_builds.toml) contains documentation on how to set up your environment to improve compile times.\nAfter you've fiddled with it, rename it to `.cargo/config.toml` to enable it.\n\n\u003c/details\u003e\n\n## Release your game\n\nThis template uses [GitHub workflows](https://docs.github.com/en/actions/using-workflows) to run tests and build releases.\nSee [Workflows](./docs/workflows.md) for more information.\n\n## Known Issues\n\nThere are some known issues in Bevy that require some arcane workarounds.\nTo keep this template simple, we have opted not to include those workarounds.\nYou can read about them in the [Known Issues](./docs/known-issues.md) document.\n\n## License\n\nThe source code in this repository is licensed under any of the following at your option:\n\n- [CC0-1.0 License](./LICENSE-CC0-1.0.txt)\n- [MIT License](./LICENSE-MIT.txt)\n- [Apache License, Version 2.0](./LICENSE-Apache-2.0.txt)\n\nWe hold no patent rights to anything presented in this repository.\n\n## Credits\n\nThe [assets](./assets) in this repository are all 3rd-party. See the [credits screen](./src/screen/credits.rs) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabusch%2Fbevy3dtest","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fabusch%2Fbevy3dtest","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fabusch%2Fbevy3dtest/lists"}