-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: bevy 0.13 upgrade * chore: update bevy_args * feat: working with bevy 0.13 * fix: radix sort bevy 0.13 * fix: upgrade headless example to bevy 0.13 * fix: lint * fix: lint
- Loading branch information
Showing
19 changed files
with
195 additions
and
247 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
[package] | ||
name = "bevy_gaussian_splatting" | ||
description = "bevy gaussian splatting render pipeline plugin" | ||
version = "2.0.2" | ||
version = "2.1.0" | ||
edition = "2021" | ||
authors = ["mosure <[email protected]>"] | ||
license = "MIT" | ||
|
@@ -114,6 +114,7 @@ viewer = [ | |
# "bevy_transform_gizmo", | ||
"bevy/multi-threaded", # bevy screenshot functionality requires bevy/multi-threaded as of 0.12.1 | ||
"clap", | ||
"bevy/bevy_ui", | ||
] | ||
|
||
web = [ | ||
|
@@ -128,13 +129,14 @@ web = [ | |
] | ||
|
||
webgl2 = ["bevy/webgl2"] | ||
webgpu = ["bevy/webgpu"] | ||
|
||
|
||
[dependencies] | ||
bevy_args = { version = "1.2.0", optional = true } | ||
bevy-inspector-egui = { version = "0.22", optional = true } | ||
bevy_args = { version = "1.3.0", optional = true } | ||
bevy-inspector-egui = { version = "0.23", optional = true } | ||
bevy_mod_picking = { version = "0.17", optional = true } | ||
bevy_panorbit_camera = { version = "0.12", optional = true } | ||
bevy_panorbit_camera = { version = "0.14", optional = true } | ||
bevy_transform_gizmo = { version = "0.10", optional = true } | ||
bincode2 = { version = "2.0", optional = true } | ||
byte-unit = { version = "5.0", optional = true } | ||
|
@@ -152,7 +154,7 @@ rayon = { version = "1.8", optional = true } | |
serde = "1.0" | ||
static_assertions = "1.1" | ||
typenum = "1.17.0" | ||
wgpu = "0.17.1" | ||
wgpu = "0.19.1" | ||
|
||
|
||
[target.'cfg(target_arch = "wasm32")'.dependencies] | ||
|
@@ -161,7 +163,7 @@ wasm-bindgen = "0.2.89" | |
|
||
|
||
[dependencies.bevy] | ||
version = "0.12" | ||
version = "0.13.0" | ||
default-features = false | ||
features = [ | ||
"bevy_asset", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
use std::iter::FromIterator; | ||
|
||
use bevy::{ | ||
prelude::*, | ||
asset::LoadState, | ||
|
Oops, something went wrong.