Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/carter907/bevy-rust-template
A rust bevy template for cargo-generate.
https://github.com/carter907/bevy-rust-template
bevy bevy-template cargo-generate rust
Last synced: 2 days ago
JSON representation
A rust bevy template for cargo-generate.
- Host: GitHub
- URL: https://github.com/carter907/bevy-rust-template
- Owner: Carter907
- Created: 2024-03-06T03:38:56.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-12-17T05:09:21.000Z (22 days ago)
- Last Synced: 2024-12-17T06:19:12.609Z (22 days ago)
- Topics: bevy, bevy-template, cargo-generate, rust
- Language: Rust
- Homepage:
- Size: 27.3 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bevy Game Template
This repository provides a project template for quickly starting a new Bevy game in Rust using [cargo-generate](https://github.com/cargo-generate/cargo-generate).
## Overview
This template includes everything you need to get started with the [Bevy Game Engine](https://bevyengine.org/), a cutting-edge, ECS-based game engine built in Rust.- **Basic Game Structure:** A simple example with a minimal setup for your game
- **Easy-to-Use Template:** Uses `cargo-generate` for quick project initialization---
## Installation
To use this template, ensure you have the following installed:- **Rust**: Install Rust from [rust-lang.org](https://www.rust-lang.org/)
- **cargo-generate**: A tool for generating Rust project scaffoldingInstall `cargo-generate` using:
```bash
cargo install cargo-generate
```---
## Usage
To create a new project using this template, run the following command:```bash
cargo generate --git https://github.com//bevy-template.git --name my_bevy_game
```Replace `my_bevy_game` with the desired name for your project.
### Running Your Game
Navigate to your newly created project folder:```bash
cd my_bevy_game
```Run the project with:
```bash
cargo run
```