qbsp 0.14.1

Rust crate for parsing and operating with Quake 1, 2, and GoldSrc BSP files
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Module that re-exports common/necessary imports to make the user experience that much nicer.

pub use crate::{BspData, BspParseError, BspParseInput, BspParseSettings, BspResult, QUAKE_PALETTE};

pub use qbsp_macros::{BspValue, BspVariableValue};

#[cfg(feature = "meshing")]
pub use crate::mesh::{
	ExportedMesh,
	lightmap::{ComputeLightmapSettings, LightmapUvMap, PerSlotLightmapPacker, PerStyleLightmapPacker},
};