-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into log_to_file
- Loading branch information
Showing
803 changed files
with
63,087 additions
and
23,115 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# These are supported funding model platforms | ||
|
||
github: cart | ||
custom: https://bevyengine.org/community/donate/ |
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,55 @@ | ||
--- | ||
name: Performance Regression | ||
about: Bevy running slowly after upgrading? Report a performance regression. | ||
title: '' | ||
labels: C-Bug, C-Performance, C-Regression, S-Needs-Triage | ||
assignees: '' | ||
--- | ||
|
||
## Bevy version | ||
|
||
* Original: The release number or commit hash of the version you last tested your app against. | ||
* Current: The release number or commit hash of the version you're currently using. | ||
|
||
## Relevant system information | ||
|
||
Please include: | ||
|
||
* 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 | ||
|
||
## What's performing poorly? | ||
|
||
Describe how you arrived at the problem. If you can, consider providing a code snippet or link | ||
to help reproduce the regression. | ||
|
||
If the exact scenario is not immediately reproducible on `cargo run`, please include a set list of steps to produce the correct setup. | ||
|
||
## Before and After Traces | ||
|
||
To best help us investigate the regression, it's best to provide as much detailed profiling | ||
data as possible. | ||
|
||
If your app is running slowly, please show profiler traces before and after the change. | ||
For more information on how to get these traces, see | ||
<https://github.com/bevyengine/bevy/blob/main/docs/profiling.md>. | ||
|
||
If this is about a compile-time regression, please provide the full output of `cargo build --timings`, | ||
for more information see <https://doc.rust-lang.org/cargo/reference/timings.html>. | ||
|
||
* Before: | ||
* After: | ||
|
||
## Additional information | ||
|
||
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 |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
( | ||
exit_after: Some(900) | ||
exit_after: Some(900), | ||
frame_time: Some(0.03), | ||
screenshot_frames: [200], | ||
) |
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 |
---|---|---|
@@ -1,3 +1,5 @@ | ||
( | ||
exit_after: Some(300) | ||
exit_after: Some(300), | ||
frame_time: Some(0.03), | ||
screenshot_frames: [100], | ||
) |
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,5 @@ | ||
node_modules/ | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ | ||
screenshot.png |
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,35 @@ | ||
exports.config = { | ||
user: process.env.BROWSERSTACK_USERNAME, | ||
key: process.env.BROWSERSTACK_ACCESS_KEY, | ||
|
||
updateJob: false, | ||
specs: [ | ||
'./specs/screenshot.js' | ||
], | ||
exclude: [], | ||
|
||
capabilities: [{ | ||
project: "Bevy Example", | ||
build: 'Bevy Example Runner', | ||
name: 'run_example', | ||
device: process.env.DEVICE || 'Samsung Galaxy S23', | ||
os_version: process.env.OS_VERSION || "13.0", | ||
app: process.env.BROWSERSTACK_APP_ID, | ||
'browserstack.debug': true, | ||
orientation: 'LANDSCAPE' | ||
}], | ||
|
||
logLevel: 'info', | ||
coloredLogs: true, | ||
screenshotPath: './screenshots/', | ||
baseUrl: '', | ||
waitforTimeout: 10000, | ||
connectionRetryTimeout: 90000, | ||
connectionRetryCount: 3, | ||
|
||
framework: 'mocha', | ||
mochaOpts: { | ||
ui: 'bdd', | ||
timeout: 20000 | ||
} | ||
}; |
Oops, something went wrong.