2020-10-15 20:47:23 +00:00
|
|
|
---
|
|
|
|
name: Bug Report
|
|
|
|
about: Report a bug to help us improve!
|
|
|
|
title: ''
|
2021-07-13 20:28:05 +00:00
|
|
|
labels: C-Bug, S-Needs-Triage
|
2020-10-15 20:47:23 +00:00
|
|
|
assignees: ''
|
|
|
|
---
|
|
|
|
|
2021-02-22 04:50:05 +00:00
|
|
|
## Bevy version
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2020-11-05 00:38:05 +00:00
|
|
|
The release number or commit hash of the version you're using.
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
## \[Optional\] Relevant system information
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
If you cannot get Bevy to build or run on your machine, please include:
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
- the Rust version you're using (you can get this by running `cargo --version`)
|
|
|
|
- Bevy relies on the "latest stable release" of Rust
|
|
|
|
- nightly should generally work, but there are sometimes regressions: please let us know!
|
|
|
|
- the operating system or browser used, including its version
|
|
|
|
- e.g. Windows 10, Ubuntu 18.04, iOS 14
|
|
|
|
|
|
|
|
If your bug is rendering-related, copy the adapter info that appears when you run Bevy.
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
```ignore
|
|
|
|
`AdapterInfo { name: "NVIDIA GeForce RTX 2070", vendor: 4318, device: 7938, device_type: DiscreteGpu, backend: Vulkan }`
|
|
|
|
```
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
You should also consider testing the examples of our upstream dependencies to help isolate any setup-specific issue:
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
- [`wgpu`](https://github.com/gfx-rs/wgpu) for rendering problems
|
|
|
|
- [`winit`](https://github.com/rust-windowing/winit) for input and window management
|
|
|
|
- [`gilrs`](https://docs.rs/gilrs/latest/gilrs/) for gamepad inputs
|
|
|
|
|
|
|
|
## What you did
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
Describe how you arrived at the problem. If you can, consider providing a code snippet or link.
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
## What went wrong
|
|
|
|
|
|
|
|
If it's not clear, break this out into:
|
|
|
|
|
|
|
|
- what were you expecting?
|
|
|
|
- what actually happened?
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2021-02-22 04:50:05 +00:00
|
|
|
## Additional information
|
2020-10-15 20:47:23 +00:00
|
|
|
|
2022-05-30 22:11:44 +00:00
|
|
|
Other information that can be used to further reproduce or isolate the problem.
|
|
|
|
This commonly includes:
|
|
|
|
|
|
|
|
- screenshots
|
|
|
|
- logs
|
|
|
|
- theories about what might be going wrong
|
|
|
|
- workarounds that you used
|
|
|
|
- links to related bugs, PRs or discussions
|