You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/* Set the collider position inside of a system. */fnmodify_collider_position(mutpositions:Query<&mutTransform,With<Collider>){// <<<<MISSING A CLOSING ANGLE BRACKETformut position in positions.iter_mut(){
position.translation.x = 2.0;}}
should be :
fnmodify_collider_position(mutcolliders:Query<&mutTransform,With<Collider>>){formut position in colliders.iter_mut(){
position.translation.x = 2.0;}}
missing closing > bracket.
Cannot see how to file a PR directly for those docs so @dimforge folk.
The text was updated successfully, but these errors were encountered:
is:
should be :
missing closing > bracket.
Cannot see how to file a PR directly for those docs so @dimforge folk.
The text was updated successfully, but these errors were encountered: