Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

"Collision groups and solver groups" for bevy plugin is out of date #75

Closed
Breadp4ck opened this issue Oct 28, 2023 · 2 comments
Closed
Labels
bug Something isn't working D-Easy "easy" task documentation Improvements or additions to documentation P-High High Priority S-in-progress Work has been started

Comments

@Breadp4ck
Copy link

The corresponding section of documentation is provided with out of date examples -- the code just does not compile.

// fails
// CollisionGroups::new(0b1101.into(), 0b0100.into());
// SolverGroups::new(0b0011.into(), 0b1011.into());

// ok
CollisionGroups::new(
    Group::from_bits(0b1101).unwrap(),
    Group::from_bits(0b0100).unwrap(),
);
SolverGroups::new(
    Group::from_bits(0b0011).unwrap(),
    Group::from_bits(0b1011).unwrap(),
);
@Vrixyz Vrixyz added bug Something isn't working documentation Improvements or additions to documentation P-High High Priority D-Easy "easy" task S-in-progress Work has been started labels May 22, 2024
@Vrixyz
Copy link
Contributor

Vrixyz commented May 27, 2024

Thanks, I'm tackling that in the scope of #99

@Vrixyz
Copy link
Contributor

Vrixyz commented Jun 4, 2024

Thank again :) ; I'm closing this as it was merged ; it will be part of next website deployment (no planned date)

@Vrixyz Vrixyz closed this as completed Jun 4, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working D-Easy "easy" task documentation Improvements or additions to documentation P-High High Priority S-in-progress Work has been started
Projects
None yet
Development

No branches or pull requests

2 participants