pub struct hkbHandIkControlData {Show 13 fields
pub __ptr: Option<Pointer>,
pub m_targetPosition: Vector4,
pub m_targetRotation: Quaternion,
pub m_targetNormal: Vector4,
pub m_targetHandle: Pointer,
pub m_transformOnFraction: f32,
pub m_normalOnFraction: f32,
pub m_fadeInDuration: f32,
pub m_fadeOutDuration: f32,
pub m_extrapolationTimeStep: f32,
pub m_handleChangeSpeed: f32,
pub m_handleChangeMode: HandleChangeMode,
pub m_fixUp: bool,
}
Expand description
§C++ Info
- name:
hkbHandIkControlData
- version:
2
- signature:
0xd72b8d17
- size:
80
(x86)/96
(x86_64) - vtable:
false
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.
m_targetPosition: Vector4
§C++ Info
- name:
targetPosition
(ctype:hkVector4
) - offset:
0
(x86)/0
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_targetRotation: Quaternion
§C++ Info
- name:
targetRotation
(ctype:hkQuaternion
) - offset:
16
(x86)/16
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_targetNormal: Vector4
§C++ Info
- name:
targetNormal
(ctype:hkVector4
) - offset:
32
(x86)/32
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_targetHandle: Pointer
§C++ Info
- name:
targetHandle
(ctype:struct hkbHandle*
) - offset:
48
(x86)/48
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_transformOnFraction: f32
§C++ Info
- name:
transformOnFraction
(ctype:hkReal
) - offset:
52
(x86)/56
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_normalOnFraction: f32
§C++ Info
- name:
normalOnFraction
(ctype:hkReal
) - offset:
56
(x86)/60
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_fadeInDuration: f32
§C++ Info
- name:
fadeInDuration
(ctype:hkReal
) - offset:
60
(x86)/64
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_fadeOutDuration: f32
§C++ Info
- name:
fadeOutDuration
(ctype:hkReal
) - offset:
64
(x86)/68
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_extrapolationTimeStep: f32
§C++ Info
- name:
extrapolationTimeStep
(ctype:hkReal
) - offset:
68
(x86)/72
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_handleChangeSpeed: f32
§C++ Info
- name:
handleChangeSpeed
(ctype:hkReal
) - offset:
72
(x86)/76
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_handleChangeMode: HandleChangeMode
§C++ Info
- name:
handleChangeMode
(ctype:enum HandleChangeMode
) - offset:
76
(x86)/80
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_fixUp: bool
§C++ Info
- name:
fixUp
(ctype:hkBool
) - offset:
77
(x86)/81
(x86_64) - type_size:
1
(x86)/1
(x86_64)
Trait Implementations§
Source§impl Clone for hkbHandIkControlData
impl Clone for hkbHandIkControlData
Source§impl Debug for hkbHandIkControlData
impl Debug for hkbHandIkControlData
Source§impl Default for hkbHandIkControlData
impl Default for hkbHandIkControlData
Source§impl<'de> Deserialize<'de> for hkbHandIkControlData
impl<'de> Deserialize<'de> for hkbHandIkControlData
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 hkbHandIkControlData
impl HavokClass for hkbHandIkControlData
Source§impl PartialEq for hkbHandIkControlData
impl PartialEq for hkbHandIkControlData
Auto Trait Implementations§
impl Freeze for hkbHandIkControlData
impl RefUnwindSafe for hkbHandIkControlData
impl Send for hkbHandIkControlData
impl Sync for hkbHandIkControlData
impl Unpin for hkbHandIkControlData
impl UnwindSafe for hkbHandIkControlData
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