rbx_mesh 0.8.0

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

#[binrw::binrw]
#[brw(little)]
#[brw(magic = b"CSGPHS\x06\0\0\0")]
#[derive(Debug, Clone)]
pub struct CSGPHS6 {
	pub physics_info: PhysicsInfo,
	pub mesh: Mesh,
}