bevy_gaussian_splatting 2.4.2

bevy gaussian splatting render pipeline plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
use static_assertions::assert_cfg;


#[cfg(feature = "io_bincode2")]
pub mod bincode2;

#[cfg(feature = "io_flexbuffers")]
pub mod flexbuffers;


assert_cfg!(
    any(
        feature = "io_bincode2",
        feature = "io_flexbuffers",
    ),
    "no gcloud io enabled",
);