rbx_mesh 0.8.0

Rust parser for Roblox mesh files.
Documentation
1
2
3
4
5
6
7
8
9
/// CSGK contains no actual mesh data.  rbx_mesh does not have a method
/// to extract any meaningful information from it.
#[binrw::binrw]
#[brw(little)]
#[brw(magic = b"CSGK")]
#[derive(Debug, Clone)]
pub struct CSGK {
	pub uuid_ascii_hex: [u8; 32],
}