Tristan Guichaoua
Tristan Guichaoua
Could be very useful to have some methods on `DebugLines` to create basics shape like arrow, square, circle ...
Add a method to create a `Rect` with a specific ratio that fit inside another `Rect`. Check the `draw_with_ratio` example for example of usage.
After [this source](https://www.bitwarsoft.com/full-screen-shortcuts.html#Full-Screen_Shortcuts_For_Windows) the actual fullscreen shortcut for Windows is `Alt+Enter`. `F11` is also generaly used. Actually `Windows key + F` opens the feedback hub and doesn't fullscreen the nannou...
# Objective Drop the usage of [`std::any::type_name`](https://doc.rust-lang.org/std/any/fn.type_name.html) to introduce a stable type name for reflected types. Based on https://github.com/bevyengine/bevy/issues/5745#issuecomment-1221389131 closes #3327 ## Solution - Add a `TypePath` trait that can...
Rocket is configured with [`Rocket::configure`](https://api.rocket.rs/master/rocket/struct.Rocket.html#method.configure) that completly overwrite the configurations. This fix only makes that only required fields of the configuration being patched. This fixes configuration for fairing like `rocket_dyn_templates`...
It could be usefull when debuging to host the server not only on the `localhost` but also on network to allow other devices to send request. For example [`vite`](https://vitejs.dev/) has...
When deploying, the app is build in debug mode. Building in release mode reduce the size of the binaries and the runtime speed.
## What problem does this solve or what need does it fill? `unsafe_op_in_unsafe_fn` will be warn by default in rust edition 2024 (https://github.com/rust-lang/rust/pull/112038). ## What solution would you like? Enable...
# Objective - Fixes #11570. ## Solution Implements one the solutions proposed in https://github.com/bevyengine/bevy/issues/11570#issuecomment-1913542767. - Add `FixedLenList` as super trait of `List`. --- ## Changelog - Added `FixedLenList` trait as...
related to #1314 Add a `remove(index)` method that remove and return an element from `Punctated`. This method is similar to [`Vec::remove(index)`](https://doc.rust-lang.org/std/vec/struct.Vec.html#method.remove).