bevy/examples/stress_tests
woodroww 1bd390806f added subdivisions to shape::Plane (#7546)
# Objective

There was issue #191 requesting subdivisions on the shape::Plane.
I also could have used this recently. I then write the solution.

Fixes  #191

## Solution

I changed the shape::Plane to include subdivisions field and the code to create the subdivisions. I don't know how people are counting subdivisions so as I put in the doc comments 0 subdivisions results in the original geometry of the Plane.
Greater then 0 results in the number of lines dividing the plane.

I didn't know if it would be better to create a new struct that implemented this feature, say SubdivisionPlane or change Plane. I decided on changing Plane as that was what the original issue was.

It would be trivial to alter this to use another struct instead of altering Plane.
The issues of migration, although small, would be eliminated if a new struct was implemented.
 
## Changelog
### Added
Added subdivisions field to shape::Plane

## Migration Guide
All the examples needed to be updated to initalize the subdivisions field.
Also there were two tests in tests/window that need to be updated.

A user would have to update all their uses of shape::Plane to initalize the subdivisions field.
2023-02-13 18:20:20 +00:00
..
bevymark.rs Base Sets (#7466) 2023-02-06 03:10:08 +00:00
many_animated_sprites.rs Base Sets (#7466) 2023-02-06 03:10:08 +00:00
many_buttons.rs Windows as Entities (#5589) 2023-01-19 00:38:28 +00:00
many_cubes.rs Base Sets (#7466) 2023-02-06 03:10:08 +00:00
many_foxes.rs added subdivisions to shape::Plane (#7546) 2023-02-13 18:20:20 +00:00
many_lights.rs Base Sets (#7466) 2023-02-06 03:10:08 +00:00
many_sprites.rs Cleanup many sprites stress tests (#7436) 2023-02-01 21:07:11 +00:00
README.md Add a stress test profile (#6901) 2022-12-20 15:59:41 +00:00
transform_hierarchy.rs Base Sets (#7466) 2023-02-06 03:10:08 +00:00
warning_string.txt Added performance warning when running stress test examples in debug mode (#5029) 2022-07-13 19:13:46 +00:00

Stress tests

These examples are used to stress test Bevy's performance in various ways. These should be run with the "stress-test" profile to accurately represent performance in production, otherwise they will run in cargo's default "dev" profile which is very slow.

Example Command

cargo run --profile stress-test --example <EXAMPLE>