From fdae5d35251cd47d9da91975f17ad711959e6932 Mon Sep 17 00:00:00 2001 From: Patrick Dobbs Date: Tue, 31 Dec 2024 15:17:50 +0000 Subject: [PATCH] Changes for final 0.15 release. --- crates/blenvy/Cargo.toml | 6 +++--- crates/blenvy/src/components/process_gltfs.rs | 2 +- .../blenvy/src/components/ronstring_to_reflect_component.rs | 2 +- examples/animation/Cargo.toml | 2 +- examples/blueprints/Cargo.toml | 2 +- examples/blueprints/src/main.rs | 2 +- examples/components/Cargo.toml | 2 +- examples/save_load/Cargo.toml | 4 ++-- testing/bevy_example/Cargo.toml | 2 +- 9 files changed, 12 insertions(+), 12 deletions(-) diff --git a/crates/blenvy/Cargo.toml b/crates/blenvy/Cargo.toml index a4a245d..6c77399 100644 --- a/crates/blenvy/Cargo.toml +++ b/crates/blenvy/Cargo.toml @@ -14,12 +14,12 @@ license = "MIT OR Apache-2.0" workspace = true [dependencies] -bevy = { version = "0.15.0-rc.1", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf", "animation"] } +bevy = { version = "0.15", default-features = false, features = ["bevy_asset", "bevy_scene", "bevy_gltf", "animation"] } serde = "1.0.188" ron = "0.8.1" serde_json = "1.0.108" -bevy_common_assets = {version = "0.12.0-rc.1", features = ["ron"]} +bevy_common_assets = {version = "0.12", features = ["ron"]} [dev-dependencies] -bevy = { version = "0.15.0-rc.1", default-features = false, features = ["dynamic_linking"] } \ No newline at end of file +bevy = { version = "0.15", default-features = false, features = ["dynamic_linking"] } \ No newline at end of file diff --git a/crates/blenvy/src/components/process_gltfs.rs b/crates/blenvy/src/components/process_gltfs.rs index 9d1d407..9080cd5 100644 --- a/crates/blenvy/src/components/process_gltfs.rs +++ b/crates/blenvy/src/components/process_gltfs.rs @@ -9,7 +9,7 @@ use bevy::{ gltf::{GltfExtras, GltfMaterialExtras, GltfMeshExtras, GltfSceneExtras}, hierarchy::Parent, log::{debug, warn}, - reflect::{Reflect, PartialReflect, TypeRegistration}, + reflect::{PartialReflect, TypeRegistration}, utils::HashMap, }; diff --git a/crates/blenvy/src/components/ronstring_to_reflect_component.rs b/crates/blenvy/src/components/ronstring_to_reflect_component.rs index 92c2e6d..c45f47c 100644 --- a/crates/blenvy/src/components/ronstring_to_reflect_component.rs +++ b/crates/blenvy/src/components/ronstring_to_reflect_component.rs @@ -1,6 +1,6 @@ use bevy::log::{debug, warn}; use bevy::reflect::serde::ReflectDeserializer; -use bevy::reflect::{Reflect, PartialReflect, TypeRegistration, TypeRegistry}; +use bevy::reflect::{PartialReflect, TypeRegistration, TypeRegistry}; use bevy::utils::HashMap; use ron::Value; use serde::de::DeserializeSeed; diff --git a/examples/animation/Cargo.toml b/examples/animation/Cargo.toml index 15d7dae..c2cd7a7 100644 --- a/examples/animation/Cargo.toml +++ b/examples/animation/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] } +bevy = { version = "0.15", features = ["dynamic_linking"] } blenvy = { path = "../../crates/blenvy" } rand = "0.8.5" \ No newline at end of file diff --git a/examples/blueprints/Cargo.toml b/examples/blueprints/Cargo.toml index e167d0c..0e3e5a4 100644 --- a/examples/blueprints/Cargo.toml +++ b/examples/blueprints/Cargo.toml @@ -5,6 +5,6 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] } +bevy = { version = "0.15", features = ["dynamic_linking"] } blenvy = { path = "../../crates/blenvy" } rand = "0.8.5" \ No newline at end of file diff --git a/examples/blueprints/src/main.rs b/examples/blueprints/src/main.rs index 1080c0e..d82f3e4 100644 --- a/examples/blueprints/src/main.rs +++ b/examples/blueprints/src/main.rs @@ -25,7 +25,7 @@ fn main() { fn setup_game(mut commands: Commands) { // here we spawn our game world/level, which is also a blueprint ! commands.spawn(( - BlueprintInfo::from_path("levels/World.glb"), // all we need is a Blueprint info... + BlueprintInfo::from_path("levels/Level1.glb"), // all we need is a Blueprint info... SpawnBlueprint, // and spawnblueprint to tell blenvy to spawn the blueprint now HideUntilReady, // only reveal the level once it is ready GameWorldTag, diff --git a/examples/components/Cargo.toml b/examples/components/Cargo.toml index d2586fd..976b8e7 100644 --- a/examples/components/Cargo.toml +++ b/examples/components/Cargo.toml @@ -5,5 +5,5 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] } +bevy = { version = "0.15", features = ["dynamic_linking"] } blenvy = { path = "../../crates/blenvy" } diff --git a/examples/save_load/Cargo.toml b/examples/save_load/Cargo.toml index 55274bd..75c3629 100644 --- a/examples/save_load/Cargo.toml +++ b/examples/save_load/Cargo.toml @@ -9,14 +9,14 @@ default = [] bevy-inspector = ["bevy-inspector-egui"] [dependencies] -bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] } +bevy = { version = "0.15", features = ["dynamic_linking"] } blenvy = { path = "../../crates/blenvy" } serde_json = "1.0.108" serde = "1.0.193" rand = "0.8.5" -bevy-inspector-egui = { version = "0.25.1", optional = true} +bevy-inspector-egui = { version = "0.28", optional = true} [dev-dependencies] #bevy-inspector-egui = { version = "0.25.1"} \ No newline at end of file diff --git a/testing/bevy_example/Cargo.toml b/testing/bevy_example/Cargo.toml index 7be939a..9f57b0f 100644 --- a/testing/bevy_example/Cargo.toml +++ b/testing/bevy_example/Cargo.toml @@ -5,7 +5,7 @@ edition = "2021" license = "MIT OR Apache-2.0" [dependencies] -bevy = { version = "0.15.0-rc.1", features = ["dynamic_linking"] } +bevy = { version = "0.15", features = ["dynamic_linking"] } blenvy = { path = "../../crates/blenvy" } #bevy_editor_pls = { version = "0.8" } rand = "0.8.5"