generated from nathanfranke/gdextension
-
Notifications
You must be signed in to change notification settings - Fork 142
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update and rename bug_report.md to bug_report.yml
- Loading branch information
1 parent
00db7b9
commit 768b4f5
Showing
2 changed files
with
70 additions
and
35 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,70 @@ | ||
name: Bug report | ||
description: Report a bug in Terrain3D | ||
body: | ||
|
||
- type: markdown | ||
attributes: | ||
value: | | ||
- Please your issue hasn't been addressed in the documentation: [Troubleshooting](https://github.com/TokisanGames/Terrain3D/wiki/Troubleshooting), [Tips](https://github.com/TokisanGames/Terrain3D/wiki/Tips), [Setting up textures](https://github.com/TokisanGames/Terrain3D/wiki/Setting-Up-Textures), and other pages. | ||
- The following fields will help you provide the information we need to resolve the issue. | ||
- type: input | ||
attributes: | ||
label: Godot version | ||
description: > | ||
Specify the exact version of Godot. Inside Godot, click the version shown on the bottom bar to copy it. | ||
placeholder: v4.1.2.stable.official [399c9dc39] | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: Terrain3D version | ||
description: > | ||
Specify the version of Terrain3D. Either the name of a release, or the commit string if using a development build. | ||
placeholder: v0.8.3-alpha_gd4.1.1 | ||
validations: | ||
required: true | ||
|
||
- type: input | ||
attributes: | ||
label: System information | ||
description: | | ||
- Specify the OS version, and relevant hardware information. | ||
- For issues that are likely OS-specific and/or graphics-related, please specify the CPU model and architecture. | ||
- For graphics-related issues, specify the GPU model, driver version, and the rendering backend (Vulkan Forward+, Mobile, Compatibility/WebGL). | ||
- **Starting with Godot 4.1, you can copy this information to your clipboard by using *Help > Copy System Info* at the top of the editor window.** | ||
placeholder: Windows 10/64 - Vulkan (Forward+) - dedicated NVIDIA GeForce GTX 970 (nvidia, 510.85.02) | ||
validations: | ||
required: true | ||
|
||
- type: dropdown | ||
id: demo | ||
attributes: | ||
label: Is the issue reproducable in the demo? | ||
description: You want to isolate the problem. If you're having issues with textures in your whole game project, put the problem texture in the demo and see if it causes the same issue. | ||
options: | ||
- Yes | ||
- No | ||
- Not applicable | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Issue description | ||
description: | | ||
Describe your issue briefly. What doesn't work, what are you expecting, and what have you tried for troubleshooting? | ||
You can paste or drag in images or videos. Format code with <code>```</code> before and after on their own lines. | ||
validations: | ||
required: true | ||
|
||
- type: textarea | ||
attributes: | ||
label: Logs | ||
description: | | ||
Terrain3D has [extensive logging](https://github.com/TokisanGames/Terrain3D/wiki/Troubleshooting#debug-logs). Enable it and attach a text file, or copy the logs here. | ||
Format them with <code>```</code> before and after on their own lines. | ||
validations: | ||
required: false | ||
|