pub struct BSLimbIKModifier<'a> {
pub __ptr: Option<Pointer>,
pub parent: hkbModifier<'a>,
pub m_limitAngleDegrees: f32,
pub m_currentAngle: f32,
pub m_startBoneIndex: i16,
pub m_endBoneIndex: i16,
pub m_gain: f32,
pub m_boneRadius: f32,
pub m_castOffset: f32,
pub m_timeStep: f32,
pub m_pSkeletonMemory: Pointer,
}
Expand description
§C++ Info
- name:
BSLimbIKModifier
- version:
0
- signature:
0x8ea971e5
- size:
76
(x86)/120
(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_limitAngleDegrees: f32
§C++ Info
- name:
limitAngleDegrees
(ctype:hkReal
) - offset:
44
(x86)/80
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_currentAngle: f32
§C++ Info
- name:
currentAngle
(ctype:hkReal
) - offset:
48
(x86)/84
(x86_64) - type_size:
4
(x86)/4
(x86_64) - flags:
SERIALIZE_IGNORED
m_startBoneIndex: i16
§C++ Info
- name:
startBoneIndex
(ctype:hkInt16
) - offset:
52
(x86)/88
(x86_64) - type_size:
2
(x86)/2
(x86_64)
m_endBoneIndex: i16
§C++ Info
- name:
endBoneIndex
(ctype:hkInt16
) - offset:
54
(x86)/90
(x86_64) - type_size:
2
(x86)/2
(x86_64)
m_gain: f32
§C++ Info
- name:
gain
(ctype:hkReal
) - offset:
56
(x86)/92
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_boneRadius: f32
§C++ Info
- name:
boneRadius
(ctype:hkReal
) - offset:
60
(x86)/96
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_castOffset: f32
§C++ Info
- name:
castOffset
(ctype:hkReal
) - offset:
64
(x86)/100
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_timeStep: f32
§C++ Info
- name:
timeStep
(ctype:hkReal
) - offset:
68
(x86)/104
(x86_64) - type_size:
4
(x86)/4
(x86_64) - flags:
SERIALIZE_IGNORED
m_pSkeletonMemory: Pointer
§C++ Info
- name:
pSkeletonMemory
(ctype:void*
) - offset:
72
(x86)/112
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl<'a> Clone for BSLimbIKModifier<'a>
impl<'a> Clone for BSLimbIKModifier<'a>
Source§impl<'a> Debug for BSLimbIKModifier<'a>
impl<'a> Debug for BSLimbIKModifier<'a>
Source§impl<'a> Default for BSLimbIKModifier<'a>
impl<'a> Default for BSLimbIKModifier<'a>
Source§impl<'de> Deserialize<'de> for BSLimbIKModifier<'de>
impl<'de> Deserialize<'de> for BSLimbIKModifier<'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 BSLimbIKModifier<'a>
impl<'a> HavokClass for BSLimbIKModifier<'a>
Source§impl<'a> PartialEq for BSLimbIKModifier<'a>
impl<'a> PartialEq for BSLimbIKModifier<'a>
Auto Trait Implementations§
impl<'a> Freeze for BSLimbIKModifier<'a>
impl<'a> RefUnwindSafe for BSLimbIKModifier<'a>
impl<'a> Send for BSLimbIKModifier<'a>
impl<'a> Sync for BSLimbIKModifier<'a>
impl<'a> Unpin for BSLimbIKModifier<'a>
impl<'a> UnwindSafe for BSLimbIKModifier<'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