pub struct hkbFootIkDriverInfo {Show 14 fields
pub __ptr: Option<Pointer>,
pub parent: hkReferencedObject,
pub m_legs: Vec<hkbFootIkDriverInfoLeg>,
pub m_raycastDistanceUp: f32,
pub m_raycastDistanceDown: f32,
pub m_originalGroundHeightMS: f32,
pub m_verticalOffset: f32,
pub m_collisionFilterInfo: u32,
pub m_forwardAlignFraction: f32,
pub m_sidewaysAlignFraction: f32,
pub m_sidewaysSampleWidth: f32,
pub m_lockFeetWhenPlanted: bool,
pub m_useCharacterUpVector: bool,
pub m_isQuadrupedNarrow: bool,
}
Expand description
§C++ Info
- name:
hkbFootIkDriverInfo
- version:
0
- signature:
0xc6a09dbf
- size:
56
(x86)/72
(x86_64) - vtable:
true
Fields§
§__ptr: Option<Pointer>
§Unique index for this class
- Represents a pointer on XML (
<hkobject name="#0001"></hkobject>
) Option::None
=> This class isclass in field
.(<hkobject></hkobject>
)
§Note
Not present in the binary & Not exist actual C++ field.
parent: hkReferencedObject
Alternative to C++ class inheritance.
m_legs: Vec<hkbFootIkDriverInfoLeg>
§C++ Info
- name:
legs
(ctype:hkArray<struct hkbFootIkDriverInfoLeg>
) - offset:
8
(x86)/16
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_raycastDistanceUp: f32
§C++ Info
- name:
raycastDistanceUp
(ctype:hkReal
) - offset:
20
(x86)/32
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_raycastDistanceDown: f32
§C++ Info
- name:
raycastDistanceDown
(ctype:hkReal
) - offset:
24
(x86)/36
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_originalGroundHeightMS: f32
§C++ Info
- name:
originalGroundHeightMS
(ctype:hkReal
) - offset:
28
(x86)/40
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_verticalOffset: f32
§C++ Info
- name:
verticalOffset
(ctype:hkReal
) - offset:
32
(x86)/44
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_collisionFilterInfo: u32
§C++ Info
- name:
collisionFilterInfo
(ctype:hkUint32
) - offset:
36
(x86)/48
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_forwardAlignFraction: f32
§C++ Info
- name:
forwardAlignFraction
(ctype:hkReal
) - offset:
40
(x86)/52
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_sidewaysAlignFraction: f32
§C++ Info
- name:
sidewaysAlignFraction
(ctype:hkReal
) - offset:
44
(x86)/56
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_sidewaysSampleWidth: f32
§C++ Info
- name:
sidewaysSampleWidth
(ctype:hkReal
) - offset:
48
(x86)/60
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_lockFeetWhenPlanted: bool
§C++ Info
- name:
lockFeetWhenPlanted
(ctype:hkBool
) - offset:
52
(x86)/64
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_useCharacterUpVector: bool
§C++ Info
- name:
useCharacterUpVector
(ctype:hkBool
) - offset:
53
(x86)/65
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_isQuadrupedNarrow: bool
§C++ Info
- name:
isQuadrupedNarrow
(ctype:hkBool
) - offset:
54
(x86)/66
(x86_64) - type_size:
1
(x86)/1
(x86_64)
Trait Implementations§
Source§impl Clone for hkbFootIkDriverInfo
impl Clone for hkbFootIkDriverInfo
Source§impl Debug for hkbFootIkDriverInfo
impl Debug for hkbFootIkDriverInfo
Source§impl Default for hkbFootIkDriverInfo
impl Default for hkbFootIkDriverInfo
Source§impl<'de> Deserialize<'de> for hkbFootIkDriverInfo
impl<'de> Deserialize<'de> for hkbFootIkDriverInfo
Source§fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl HavokClass for hkbFootIkDriverInfo
impl HavokClass for hkbFootIkDriverInfo
Source§impl PartialEq for hkbFootIkDriverInfo
impl PartialEq for hkbFootIkDriverInfo
Auto Trait Implementations§
impl Freeze for hkbFootIkDriverInfo
impl RefUnwindSafe for hkbFootIkDriverInfo
impl Send for hkbFootIkDriverInfo
impl Sync for hkbFootIkDriverInfo
impl Unpin for hkbFootIkDriverInfo
impl UnwindSafe for hkbFootIkDriverInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more