-
-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
SystemParam derive inconsistent with where clauses. #7103
Comments
iiYese
added
C-Bug
An unexpected or incorrect behavior
S-Needs-Triage
This issue needs to be labelled
labels
Jan 6, 2023
joseph-gio
added
A-ECS
Entities, components, systems, and events
and removed
S-Needs-Triage
This issue needs to be labelled
labels
Jan 6, 2023
alradish
pushed a commit
to alradish/bevy
that referenced
this issue
Jan 22, 2023
# Objective - Fix bevyengine#7103. - The issue is caused because I forgot to add a where clause to a generated struct in bevyengine#7056. ## Solution - Add the where clause.
ItsDoot
pushed a commit
to ItsDoot/bevy
that referenced
this issue
Feb 1, 2023
# Objective - Fix bevyengine#7103. - The issue is caused because I forgot to add a where clause to a generated struct in bevyengine#7056. ## Solution - Add the where clause.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Bevy version
329b71f
What you did
Pulled latest bevy main changes to get the
SystemParam
private field changes.Attempted to use it on a generic system param that used a where clause to constrain generics.
What went wrong
Got errors saying to add an unapplyable fix.
Additional information
Changing the constraints to be within the generic params instead of the where clause like so makes this error go away.
The text was updated successfully, but these errors were encountered: