BlackPhlox / bevy_config_cam

A Swiss Army knife of a camera plugin that allows for easy setup and configuration of a wide variety of types of moveable cameras and player cameras for a scene.
Other
179 stars 16 forks source link

Support bevy 0.8 #26

Open David-OConnor opened 1 year ago

David-OConnor commented 1 year ago

Upon adding this line: .add_plugin(ConfigCam):

error: failed to select a version for `web-sys`.
    ... required by package `wgpu v0.12.0`
    ... which satisfies dependency `wgpu = "^0.12.0"` of package `bevy_render v0.7.0`
    ... which satisfies dependency `bevy_render = "^0.7.0"` of package `bevy_core_pipeline v0.7.0`
    ... which satisfies dependency `bevy_core_pipeline = "^0.7.0"` of package `bevy_pbr v0.7.0`

etc.

Probably need to update the wgpu version.

BlackPhlox commented 1 year ago

I haven't gotten the time to confirm this. Just to be sure, are you running bevy 0.8? Cause if yes, bevy_config_cam is yet to support bevy 0.8. However, you can use the bevy_dolly branch for 0.8 support (Change your bevy_config_cam dependency to bevy_config_cam = { git = "https://github.com/BlackPhlox/bevy_config_cam", branch = "bevy_dolly" }), though would also need to run cargo nightly until the 11th of Aug.

David-OConnor commented 1 year ago

Correct, re 0.8. Thx for the tip on bevy_dolly

David-OConnor commented 1 year ago

This is not completed.

Rezan7CC commented 2 months ago

Do you think you will have the chance to add the updated Bevy support to the main branch sometime soon? Would love to give it a try :)