pub struct ModfEntry {
pub id: u32,
pub unique_id: u32,
pub position: [f32; 3],
pub rotation: [f32; 3],
pub lower_bounds: [f32; 3],
pub upper_bounds: [f32; 3],
pub flags: u16,
pub doodad_set: u16,
pub name_set: u16,
pub scale: u16,
}Expand description
MODF entry - Map Object Definition
Fields§
§id: u32§unique_id: u32§position: [f32; 3]§rotation: [f32; 3]§lower_bounds: [f32; 3]§upper_bounds: [f32; 3]§flags: u16§doodad_set: u16§name_set: u16§scale: u16Implementations§
Trait Implementations§
impl Copy for ModfEntry
impl StructuralPartialEq for ModfEntry
Auto Trait Implementations§
impl Freeze for ModfEntry
impl RefUnwindSafe for ModfEntry
impl Send for ModfEntry
impl Sync for ModfEntry
impl Unpin for ModfEntry
impl UnsafeUnpin for ModfEntry
impl UnwindSafe for ModfEntry
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