update to bevy 0.16.0

Need to wait for asset_loader upate full release
Need to refactor Prefab system to use the new relationships
This commit is contained in:
2025-04-29 14:35:19 -04:00
parent cb95db862c
commit 94b85c9cf7
11 changed files with 1854 additions and 655 deletions

View File

@@ -9,5 +9,5 @@ edition = "2021"
[dependencies]
serde = "1.0.204"
serde_json = "1.0.120"
bevy = "0.15.1"
bevy = "0.16.0"
ron = "0.8.1"

View File

@@ -10,7 +10,6 @@ macro_rules! create_asset_loader {
) => {
use bevy::prelude::*;
use bevy::asset::{AssetLoader, AssetEvent, AssetEvents, LoadContext, LoadState, AsyncReadExt, io::Reader};
use bevy::utils::BoxedFuture;
pub struct $plugin_name;
impl Plugin for $plugin_name {
fn build(&self, app: &mut App) {

View File

@@ -9,5 +9,5 @@ proc-macro = true
[dependencies]
serde = "1.0.204"
serde_json = "1.0.120"
bevy = "0.15.1"
bevy = "0.16.0"
ron = "0.8.1"

View File

@@ -6,14 +6,14 @@ edition = "2021"
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
[dependencies]
bevy = "0.15.1"
bevy = "0.16.0"
noise = "0.9.0"
serde = { version = "1.0.203", features = ["derive"] }
serde_json = "1.0.115"
asset_loader = { path = "../asset_loader" }
rayon = "1.10.0"
bevy-inspector-egui = "0.28.1"
bevy_asset_loader = { version = "0.22.0", features = [
bevy_asset_loader = { version = "0.23.0-rc.3", features = [
"standard_dynamic_assets",
"3d",
] }

View File

@@ -1,5 +1,5 @@
use asset_loader::create_asset_loader;
use bevy::{asset::Asset, ecs::system::Resource, reflect::TypePath};
use bevy::{asset::Asset, reflect::TypePath};
use serde::{Deserialize, Serialize};
#[derive(Resource, Debug)]
pub struct TileManager {