-
Notifications
You must be signed in to change notification settings - Fork 78
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
Pressing F on any entity panics #99
Comments
I just clicked an entity in the editor and pressed F. That is the error. bevy = { version = "0.13.1" }
bevy_editor_pls = "0.8" |
2024-03-28.13-50-18.mp4Hm, I can't reproduce, for me it works fine. From the panic it looks like there is no |
Older versions have this issue as well, e.g. I've got a multiwindow setup like so:
WTR:
If I manually select different camera mode, and then switch back - it does not panic. |
Ended up forking repo and modifying cameras.mod @ 444 like so:
Active camera count is indeed zero for some reason. |
As an alternative fix - perhaps introduce some kind of active camera settings into the plugin? Ended up with this solution:
Then in a separate system after initialization:
This works and switches camera to the proper state on application start. Though requires a separate system to do so. |
The text was updated successfully, but these errors were encountered: