bevygaussiansplatting

test GitHub License GitHub Last Commit GitHub Releases GitHub Issues Average time to resolve an issue

Alt text

bevy gaussian splatting render pipeline plugin

capabilities

usage

```rust use bevy::prelude::*; use bevygaussiansplatting::GaussianSplattingPlugin;

fn main() { App::build() .addplugins(DefaultPlugins) .addplugins(GaussianSplattingPlugin) .addsystems(Startup, setupgaussian_cloud) .run(); }

fn setupgaussiancloud( mut commands: Commands, assetserver: Res, ) { commands.spawn(GaussianSplattingBundle { verticies: assetserver.load("scenes/test.ply"), ..Default::default() });

commands.spawn(Camera3dBundle::default());

} ```

credits