pub struct EntityFields {Show 36 fields
pub bbHeight: Option<f32>,
pub bbWidth: Option<f32>,
pub collision: Option<bool>,
pub fallDistance: Option<f32>,
pub footSize: Option<f32>,
pub heightOffset: Option<f32>,
pub horizontalCollision: Option<bool>,
pub hovered: Option<bool>,
pub makeStepSound: Option<bool>,
pub nextStep: Option<i32>,
pub noPhysics: Option<bool>,
pub onGround: Option<bool>,
pub pushthrough: Option<f32>,
pub removed: Option<bool>,
pub slide: Option<bool>,
pub textureId: Option<i32>,
pub walkDist: Option<f32>,
pub walkDistO: Option<f32>,
pub x: Option<f32>,
pub xOld: Option<f32>,
pub xRot: Option<f32>,
pub xRotO: Option<f32>,
pub xd: Option<f32>,
pub xo: Option<f32>,
pub y: Option<f32>,
pub yOld: Option<f32>,
pub yRot: Option<f32>,
pub yRotO: Option<f32>,
pub ySlideOffset: Option<f32>,
pub yd: Option<f32>,
pub yo: Option<f32>,
pub z: Option<f32>,
pub zOld: Option<f32>,
pub zd: Option<f32>,
pub zo: Option<f32>,
pub bb: Option<AABB>,
}
Fields§
§bbHeight: Option<f32>
§bbWidth: Option<f32>
§collision: Option<bool>
§fallDistance: Option<f32>
§footSize: Option<f32>
§heightOffset: Option<f32>
§horizontalCollision: Option<bool>
§hovered: Option<bool>
§makeStepSound: Option<bool>
§nextStep: Option<i32>
§noPhysics: Option<bool>
§onGround: Option<bool>
§pushthrough: Option<f32>
§removed: Option<bool>
§slide: Option<bool>
§textureId: Option<i32>
§walkDist: Option<f32>
§walkDistO: Option<f32>
§x: Option<f32>
§xOld: Option<f32>
§xRot: Option<f32>
§xRotO: Option<f32>
§xd: Option<f32>
§xo: Option<f32>
§y: Option<f32>
§yOld: Option<f32>
§yRot: Option<f32>
§yRotO: Option<f32>
§ySlideOffset: Option<f32>
§yd: Option<f32>
§yo: Option<f32>
§z: Option<f32>
§zOld: Option<f32>
§zd: Option<f32>
§zo: Option<f32>
§bb: Option<AABB>
Implementations§
Source§impl EntityFields
impl EntityFields
Trait Implementations§
Source§impl Clone for EntityFields
impl Clone for EntityFields
Source§fn clone(&self) -> EntityFields
fn clone(&self) -> EntityFields
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreAuto Trait Implementations§
impl Freeze for EntityFields
impl RefUnwindSafe for EntityFields
impl Send for EntityFields
impl Sync for EntityFields
impl Unpin for EntityFields
impl UnwindSafe for EntityFields
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