Start upgrade to 0.7
- [x] `GpuImage` requires `texture_format` now. - [ ] `ActiveCameras` was removed - https://github.com/bevyengine/bevy/commit/bf6de8962287050369cd98605490bdd7770c87b4 - [x] `CachedPipelineId` is now `CachedRenderPipelineId` and renamed `RenderPipelineCache` to `PipelineCache` - https://github.com/bevyengine/bevy/pull/3979
Showing
- Cargo.lock 115 additions, 77 deletionsCargo.lock
- Cargo.toml 2 additions, 2 deletionsCargo.toml
- bevy_kayak_renderer/Cargo.toml 1 addition, 1 deletionbevy_kayak_renderer/Cargo.toml
- bevy_kayak_renderer/src/render/ui_pass.rs 2 additions, 2 deletionsbevy_kayak_renderer/src/render/ui_pass.rs
- bevy_kayak_renderer/src/render/unified/pipeline.rs 8 additions, 7 deletionsbevy_kayak_renderer/src/render/unified/pipeline.rs
- bevy_kayak_ui/Cargo.toml 1 addition, 1 deletionbevy_kayak_ui/Cargo.toml
- kayak_core/Cargo.toml 1 addition, 1 deletionkayak_core/Cargo.toml
- kayak_font/Cargo.toml 1 addition, 1 deletionkayak_font/Cargo.toml
- kayak_font/src/renderer/font_texture_cache.rs 2 additions, 0 deletionskayak_font/src/renderer/font_texture_cache.rs
... | @@ -17,14 +17,14 @@ bevy_renderer = [ | ... | @@ -17,14 +17,14 @@ bevy_renderer = [ |
] | ] | ||
[dependencies] | [dependencies] | ||
bevy = { version = "0.6.1", optional = true } | bevy = { version = "0.7.0", optional = true } | ||
bevy_kayak_ui = { path = "bevy_kayak_ui", optional = true } | bevy_kayak_ui = { path = "bevy_kayak_ui", optional = true } | ||
kayak_core = { path = "kayak_core" } | kayak_core = { path = "kayak_core" } | ||
kayak_font = { path = "kayak_font" } | kayak_font = { path = "kayak_font" } | ||
kayak_render_macros = { path = "kayak_render_macros" } | kayak_render_macros = { path = "kayak_render_macros" } | ||
[dev-dependencies] | [dev-dependencies] | ||
bevy = { version = "0.6.1" } | bevy = { version = "0.7.0" } | ||
rand = { version = "0.8.4" } | rand = { version = "0.8.4" } | ||
[[example]] | [[example]] | ||
... | ... |
Please register or sign in to comment