Changes for final 0.15 release.

This commit is contained in:
Patrick Dobbs 2024-12-31 15:17:50 +00:00
parent c7b1ad3145
commit fdae5d3525
9 changed files with 12 additions and 12 deletions

View File

@ -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"] }
bevy = { version = "0.15", default-features = false, features = ["dynamic_linking"] }

View File

@ -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,
};

View File

@ -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;

View File

@ -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"

View File

@ -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"

View File

@ -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,

View File

@ -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" }

View File

@ -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"}

View File

@ -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"