这是indexloc提供的服务,不要输入任何密码
Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,8 @@ default = [
# "morph_particles",
"morph_interpolate",

"nightly_generic_alias",

"sort_bitonic",
"sort_radix", # TODO: fix macos radix sort
"sort_rayon",
Expand All @@ -80,6 +82,8 @@ material_noise = ["noise", "dep:noise"]
morph_particles = []
morph_interpolate = []

nightly_generic_alias = []

noise = []

sh0 = []
Expand Down
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,13 +10,15 @@ bevy gaussian splatting render pipeline plugin. view the [live demo](https://mos
![Alt text](docs/go.gif)


## install cli
## install

```bash
cargo install bevy_gaussian_splatting
cargo +nightly install bevy_gaussian_splatting
bevy_gaussian_splatting --input-cloud [file://gaussian.ply | https://mitchell.mosure.me/go_trimmed.ply]
```

> note: default bevy_gaussian_splatting features require nightly rust for generic associated types. to use on stable, disable default features and `nightly_generic_alias` feature


## capabilities

Expand Down
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#![allow(incomplete_features)]
#![feature(lazy_type_alias)]
#![cfg_attr(feature = "nightly_generic_alias", feature(lazy_type_alias))]

use bevy::prelude::*;
pub use bevy_interleave::prelude::*;
Expand Down