Skip to content

Commit fac233f

Browse files
committed
chore: publish v6.0.0
1 parent 7c9725c commit fac233f

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed

Cargo.lock

Lines changed: 3 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,10 +164,9 @@ base64 = { version = "0.22", optional = true }
164164
bevy_args = { version = "2.0.0" }
165165
bevy-inspector-egui = { version = "0.34.0", optional = true }
166166
bevy_interleave = { version = "0.8.0" }
167-
# bevy_panorbit_camera = { git = "https://github.com/mosure/bevy_panorbit_camera.git", optional = true, features = ["bevy_egui"] }
168167
bevy_panorbit_camera = { version = "0.29.0", optional = true , features = ["bevy_egui"]}
169168
bevy_transform_gizmo = { version = "0.12", optional = true }
170-
bevy_file_asset = { git = "https://github.com/cs50victor/bevy_file_asset", branch = "chore/bump_bevy", optional = true }
169+
bevy_file_asset = { version = "0.3", optional = true }
171170
bincode2 = { version = "2.0", optional = true }
172171
byte-unit = { version = "5.1", optional = true }
173172
bytemuck = "1.23"

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,7 @@ the following tools are compatible with `bevy_gaussian_splatting`:
115115

116116
| `bevy_gaussian_splatting` | `bevy` |
117117
| :-- | :-- |
118+
| `6.0` | `0.17` |
118119
| `5.0` | `0.16` |
119120
| `3.0` | `0.15` |
120121
| `2.3` | `0.14` |

viewer/viewer.rs

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,6 @@ use bevy_panorbit_camera::{PanOrbitCamera, PanOrbitCameraPlugin};
1212
use base64::{Engine as _, engine::general_purpose::URL_SAFE};
1313
#[cfg(feature = "file_asset")]
1414
use bevy_file_asset::FileAssetPlugin;
15-
#[cfg(feature = "web_asset")]
16-
use bevy::asset::io::web::WebAssetPlugin;
1715

1816
use bevy_gaussian_splatting::{
1917
gaussian::interface::TestCloud, random_gaussians_3d, random_gaussians_4d, utils::{log, setup_hooks, GaussianSplattingViewer}, CloudSettings, GaussianCamera, GaussianMode, GaussianScene, GaussianSceneHandle, GaussianSplattingPlugin, PlanarGaussian3d, PlanarGaussian3dHandle, PlanarGaussian4d, PlanarGaussian4dHandle
@@ -289,9 +287,6 @@ fn viewer_app() {
289287
#[cfg(feature = "file_asset")]
290288
app.add_plugins(FileAssetPlugin);
291289

292-
#[cfg(feature = "web_asset")]
293-
app.add_plugins(WebAssetPlugin{ silence_startup_warning: true });
294-
295290
// setup for gaussian viewer app
296291
app.insert_resource(ClearColor(Color::srgb_u8(0, 0, 0)));
297292
app.add_plugins(

0 commit comments

Comments
 (0)