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

Open
Breadp4ck opened this issue Oct 28, 2023 · 0 comments
Open
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
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