rbx_mesh 0.8.0

Rust parser for Roblox mesh files.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use super::v3::Mesh;

// v3 and v5 are identical
#[binrw::binrw]
#[brw(little)]
#[brw(magic = b"CSGPHS\x05\0\0\0")]
#[derive(Debug, Clone)]
pub struct CSGPHS5 {
	#[br(parse_with=binrw::helpers::until_eof)]
	pub meshes: Vec<Mesh>,
}