pub struct LevHeightmapCell {
pub size: u32,
pub version: u8,
pub height: f32,
pub ground_theme: (u8, u8, u8),
pub ground_theme_strength: (u8, u8),
pub walkable: bool,
pub passover: bool,
pub sound_theme: u8,
pub shore: bool,
}Fields§
§size: u32§version: u8§height: f32§ground_theme: (u8, u8, u8)§ground_theme_strength: (u8, u8)§walkable: bool§passover: bool§sound_theme: u8§shore: boolTrait Implementations§
Source§impl Debug for LevHeightmapCell
impl Debug for LevHeightmapCell
Source§impl PartialEq for LevHeightmapCell
impl PartialEq for LevHeightmapCell
impl StructuralPartialEq for LevHeightmapCell
Auto Trait Implementations§
impl Freeze for LevHeightmapCell
impl RefUnwindSafe for LevHeightmapCell
impl Send for LevHeightmapCell
impl Sync for LevHeightmapCell
impl Unpin for LevHeightmapCell
impl UnwindSafe for LevHeightmapCell
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more