Skip to content

Commit 3ec0958

Browse files
authored
Fix meshlet private item regression (#16404)
I didn't mean to make this item private, fixing it for the 0.15 release to be consistent with 0.14. (maintainers: please make sure this gets merged into the 0.15 release branch as well as main)
1 parent 6e81a05 commit 3ec0958

File tree

1 file changed

+3
-1
lines changed
  • crates/bevy_pbr/src/meshlet

1 file changed

+3
-1
lines changed

crates/bevy_pbr/src/meshlet/mod.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,9 @@ pub(crate) use self::{
3333
},
3434
};
3535

36-
pub use self::asset::{MeshletMesh, MeshletMeshLoader, MeshletMeshSaver};
36+
pub use self::asset::{
37+
MeshletMesh, MeshletMeshLoader, MeshletMeshSaver, MESHLET_MESH_ASSET_VERSION,
38+
};
3739
#[cfg(feature = "meshlet_processor")]
3840
pub use self::from_mesh::{
3941
MeshToMeshletMeshConversionError, MESHLET_DEFAULT_VERTEX_POSITION_QUANTIZATION_FACTOR,

0 commit comments

Comments
 (0)