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

Issues after upgrading to bevy 0.5 #8

Open
3 tasks
SarthakSingh31 opened this issue Apr 8, 2021 · 2 comments
Open
3 tasks

Issues after upgrading to bevy 0.5 #8

SarthakSingh31 opened this issue Apr 8, 2021 · 2 comments

Comments

@SarthakSingh31
Copy link
Owner

All of the following issues can be replicated from examples/board.rs

  • Follow does not work
  • Keyboard movement stutters
  • Mouse zoom is not smooth

All of these need to be resolved before 0.2 release

@BlackPhlox
Copy link

BlackPhlox commented Apr 8, 2021

Also, which might (or might not) be the reason for some of your other issues, because of the new executor, your library has some system order ambiguities. You can ignore the Asset ambiguities. However, Camera and PickingRaycastSet from bevy_mod_picking might be worth a look. You can see this by running your example made visible by @aevyrie's commit and pr.

For more information see the new parallel system executor and ambiguity detection and resolution.

@BlackPhlox
Copy link

Another thing that might be worth looking into. I can see that you're using the heap to store the keycode input (Box). Which shouldn't have any major impact on performance nor cause stuttering. However, you could try converting it to using static lifetime elision to see if that makes a difference.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants