| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Stride is an open-source C# game engine designed for realistic rendering and VR. Highly modular, it aims to give game makers more flexibility in their development. Stride comes with an editor, Game Studio, which allows you to create and manage the content of your games or applications visually and intuitively. To learn more about Stride, visit stride3d.net.
This README is intended for users who want to build the Stride engine from source or contribute to its development. If your goal is to create games using Stride, we recommend visiting the Get started with Stride guide. There, you'll find detailed instructions on downloading, installing, and getting started with game development in Stride.
Create and manage Stride projects from the command line — no editor required.
The Stride CLI tool installs and manages Stride engine versions, creates projects from templates, and opens Game Studio:
dotnet tool install -g Stride.Cli
stride sdk install # install the latest Stride engine
stride new fps -n MyShooter # template: game, fps, platformer2d, topdownrpg, vrsandbox, ...
cd MyShooter && dotnet run --project MyShooter.Windows
stride studio # open Game Studio, the visual editorstride new with no template lists what's available, stride sdk manages installed engine versions (list, install, uninstall, update), and stride upgrade moves a project to a newer engine. See sources/launcher/README.md.
Prefer standard .NET templating? The same templates are available through dotnet new:
dotnet new install Stride.Templates.Games
dotnet new stride-game -n MyGame
cd MyGame && dotnet run --project MyGame.WindowsSee sources/templates/README.md for the full template catalog (genre starters, 18 feature demos, tutorials) and the local-development workflow.
Want to get involved? See our Contributing section for how to ask questions, report bugs, submit pull requests (including good first issues), and how you can earn money by contributing via funded tasks/bug bounties.
Our Roadmap communicates upcoming changes to the Stride engine.
See docs/build/README.md for detailed prerequisites (specific MSVC toolset versions, optional iOS/Android/ARM64/VSIX components, command-line builds without VS, and troubleshooting).
Please check our Contributing Guidelines.
| Build | Status |
|---|---|
| Windows | |
| Linux Vulkan/OpenGL | |
| iOS | |
| Tests (Simple) | |
| Tests (Game/WARP) |
The Stride documentation is organized across different locations. Here's how it's structured:
This project is supported by the .NET Foundation.
Stride is covered by the MIT License unless stated otherwise (i.e. for some files that are copied from other projects). You can find the list of third-party projects here. Contributors need to sign the following Contribution License Agreement.
Thanks to all these wonderful people who have contributed to Stride!
This project follows the all-contributors specification. Contributions of any kind welcome!
| Back | FazBrowse Home | New Git URL |