Lucas Franca

Results 30 comments of Lucas Franca

in 19ee692f9621f89f305096f423507e925b748b9a, with `RUST_TEST_THREADS=4` to prevent OOM, so slower than usual | Command | Time | | --- | --- | | `cargo test --doc -p bevy_gizmos` | 15.32s |...

one thing to note is that `--jobs` is for compiling, to limit testing you use `--test-threads` i.e. `cargo test --doc --jobs 4 -- --test-threads 4` `--test-threads` is passed to the...

to add a doc link for a type that is not in scope use the full path i.e. `[``GlobalTransform``](bevy_transform::prelude::GlobalTransform)` IIRC

And it seems to be deterministic, as on my example it always fails on tick 1143

Kinda, I solved my issue by using `shape_intersect` instead, but kept the issue open for an official statement on how the behavior should be in this case

https://github.com/user-attachments/assets/9d99cf63-7f0f-4d9f-bc6a-8e4c97e214b9

Logging the values of the `ShapeHits` i saw that the `point1` always shows the correct value (you can see that in my video the yellow gizmo is always on the...

how is the distance calculated? because with a cylinder of 0 height (a circle) the contact point is not consistent, but the distance is, except when the normal is not...

#19491 will help with this You will then have ```rust fn setup(mut commands: Commands) { commands.spawn((Name::new("parent"), optional_children())); } fn optional_children() -> impl Bundle { Children::spawn(SpawnIter( [(Some(Name::new("a")), None), (None, None), (Some(Name::new("b")),...

```rust let string_slice: Handle = asset_server.load("a.test"); let string: Handle = asset_server.load("a.test".to_owned()); let path: Handle = asset_server.load(PathBuf::from("a.test")); assert_eq!(string_slice, string); assert_eq!(string_slice, path); // Testing with labels let string_slice: Handle = asset_server.load("a.test#Test"); let...