pub struct BSLookAtModifierBoneData {
pub __ptr: Option<Pointer>,
pub m_index: i16,
pub m_fwdAxisLS: Vector4,
pub m_limitAngleDegrees: f32,
pub m_onGain: f32,
pub m_offGain: f32,
pub m_enabled: bool,
pub m_currentFwdAxisLS: Vector4,
}
Expand description
§C++ Info
- name:
BSLookAtModifierBoneData
- version:
0
- signature:
0x29efee59
- size:
64
(x86)/64
(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_index: i16
§C++ Info
- name:
index
(ctype:hkInt16
) - offset:
0
(x86)/0
(x86_64) - type_size:
2
(x86)/2
(x86_64)
m_fwdAxisLS: Vector4
§C++ Info
- name:
fwdAxisLS
(ctype:hkVector4
) - offset:
16
(x86)/16
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_limitAngleDegrees: f32
§C++ Info
- name:
limitAngleDegrees
(ctype:hkReal
) - offset:
32
(x86)/32
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_onGain: f32
§C++ Info
- name:
onGain
(ctype:hkReal
) - offset:
36
(x86)/36
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_offGain: f32
§C++ Info
- name:
offGain
(ctype:hkReal
) - offset:
40
(x86)/40
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_enabled: bool
§C++ Info
- name:
enabled
(ctype:hkBool
) - offset:
44
(x86)/44
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_currentFwdAxisLS: Vector4
§C++ Info
- name:
currentFwdAxisLS
(ctype:hkVector4
) - offset:
48
(x86)/48
(x86_64) - type_size:
16
(x86)/16
(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl Clone for BSLookAtModifierBoneData
impl Clone for BSLookAtModifierBoneData
Source§impl Debug for BSLookAtModifierBoneData
impl Debug for BSLookAtModifierBoneData
Source§impl Default for BSLookAtModifierBoneData
impl Default for BSLookAtModifierBoneData
Source§impl<'de> Deserialize<'de> for BSLookAtModifierBoneData
impl<'de> Deserialize<'de> for BSLookAtModifierBoneData
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 PartialEq for BSLookAtModifierBoneData
impl PartialEq for BSLookAtModifierBoneData
Auto Trait Implementations§
impl Freeze for BSLookAtModifierBoneData
impl RefUnwindSafe for BSLookAtModifierBoneData
impl Send for BSLookAtModifierBoneData
impl Sync for BSLookAtModifierBoneData
impl Unpin for BSLookAtModifierBoneData
impl UnwindSafe for BSLookAtModifierBoneData
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