pub struct hkbGetUpModifier<'a> {
pub __ptr: Option<Pointer>,
pub parent: hkbModifier<'a>,
pub m_groundNormal: Vector4,
pub m_duration: f32,
pub m_alignWithGroundDuration: f32,
pub m_rootBoneIndex: i16,
pub m_otherBoneIndex: i16,
pub m_anotherBoneIndex: i16,
pub m_timeSinceBegin: f32,
pub m_timeStep: f32,
pub m_initNextModify: bool,
}Expand description
§C++ Info
- name:
hkbGetUpModifier - version:
2 - signature:
0x61cb7ac0 - size:
96(x86)/128(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: hkbModifier<'a>Alternative to C++ class inheritance.
m_groundNormal: Vector4§C++ Info
- name:
groundNormal(ctype:hkVector4) - offset:
48(x86)/80(x86_64) - type_size:
16(x86)/16(x86_64)
m_duration: f32§C++ Info
- name:
duration(ctype:hkReal) - offset:
64(x86)/96(x86_64) - type_size:
4(x86)/4(x86_64)
m_alignWithGroundDuration: f32§C++ Info
- name:
alignWithGroundDuration(ctype:hkReal) - offset:
68(x86)/100(x86_64) - type_size:
4(x86)/4(x86_64)
m_rootBoneIndex: i16§C++ Info
- name:
rootBoneIndex(ctype:hkInt16) - offset:
72(x86)/104(x86_64) - type_size:
2(x86)/2(x86_64)
m_otherBoneIndex: i16§C++ Info
- name:
otherBoneIndex(ctype:hkInt16) - offset:
74(x86)/106(x86_64) - type_size:
2(x86)/2(x86_64)
m_anotherBoneIndex: i16§C++ Info
- name:
anotherBoneIndex(ctype:hkInt16) - offset:
76(x86)/108(x86_64) - type_size:
2(x86)/2(x86_64)
m_timeSinceBegin: f32§C++ Info
- name:
timeSinceBegin(ctype:hkReal) - offset:
80(x86)/112(x86_64) - type_size:
4(x86)/4(x86_64) - flags:
SERIALIZE_IGNORED
m_timeStep: f32§C++ Info
- name:
timeStep(ctype:hkReal) - offset:
84(x86)/116(x86_64) - type_size:
4(x86)/4(x86_64) - flags:
SERIALIZE_IGNORED
m_initNextModify: bool§C++ Info
- name:
initNextModify(ctype:hkBool) - offset:
88(x86)/120(x86_64) - type_size:
1(x86)/1(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl<'a> Clone for hkbGetUpModifier<'a>
impl<'a> Clone for hkbGetUpModifier<'a>
Source§impl<'a> Debug for hkbGetUpModifier<'a>
impl<'a> Debug for hkbGetUpModifier<'a>
Source§impl<'a> Default for hkbGetUpModifier<'a>
impl<'a> Default for hkbGetUpModifier<'a>
Source§impl<'de> Deserialize<'de> for hkbGetUpModifier<'de>
impl<'de> Deserialize<'de> for hkbGetUpModifier<'de>
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<'a> HavokClass for hkbGetUpModifier<'a>
impl<'a> HavokClass for hkbGetUpModifier<'a>
Source§impl<'a> PartialEq for hkbGetUpModifier<'a>
impl<'a> PartialEq for hkbGetUpModifier<'a>
Auto Trait Implementations§
impl<'a> Freeze for hkbGetUpModifier<'a>
impl<'a> RefUnwindSafe for hkbGetUpModifier<'a>
impl<'a> Send for hkbGetUpModifier<'a>
impl<'a> Sync for hkbGetUpModifier<'a>
impl<'a> Unpin for hkbGetUpModifier<'a>
impl<'a> UnwindSafe for hkbGetUpModifier<'a>
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