pub struct hkbCharacterSetup {
pub __ptr: Option<Pointer>,
pub parent: hkReferencedObject,
pub m_retargetingSkeletonMappers: Vec<Pointer>,
pub m_animationSkeleton: Pointer,
pub m_ragdollToAnimationSkeletonMapper: Pointer,
pub m_animationToRagdollSkeletonMapper: Pointer,
pub m_animationBindingSet: Pointer,
pub m_data: Pointer,
pub m_mirroredSkeleton: Pointer,
pub m_characterPropertyIdMap: Pointer,
}
Expand description
§C++ Info
- name:
hkbCharacterSetup
- version:
2
- signature:
0xe5a2a413
- size:
48
(x86)/88
(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_retargetingSkeletonMappers: Vec<Pointer>
§C++ Info
- name:
retargetingSkeletonMappers
(ctype:hkArray<hkaSkeletonMapper*>
) - offset:
8
(x86)/16
(x86_64) - type_size:
12
(x86)/16
(x86_64)
m_animationSkeleton: Pointer
§C++ Info
- name:
animationSkeleton
(ctype:struct hkaSkeleton*
) - offset:
20
(x86)/32
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_ragdollToAnimationSkeletonMapper: Pointer
§C++ Info
- name:
ragdollToAnimationSkeletonMapper
(ctype:struct hkaSkeletonMapper*
) - offset:
24
(x86)/40
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_animationToRagdollSkeletonMapper: Pointer
§C++ Info
- name:
animationToRagdollSkeletonMapper
(ctype:struct hkaSkeletonMapper*
) - offset:
28
(x86)/48
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_animationBindingSet: Pointer
§C++ Info
- name:
animationBindingSet
(ctype:void*
) - offset:
32
(x86)/56
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_data: Pointer
§C++ Info
- name:
data
(ctype:struct hkbCharacterData*
) - offset:
36
(x86)/64
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_mirroredSkeleton: Pointer
§C++ Info
- name:
mirroredSkeleton
(ctype:void*
) - offset:
40
(x86)/72
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_characterPropertyIdMap: Pointer
§C++ Info
- name:
characterPropertyIdMap
(ctype:void*
) - offset:
44
(x86)/80
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl Clone for hkbCharacterSetup
impl Clone for hkbCharacterSetup
Source§impl Debug for hkbCharacterSetup
impl Debug for hkbCharacterSetup
Source§impl Default for hkbCharacterSetup
impl Default for hkbCharacterSetup
Source§impl<'de> Deserialize<'de> for hkbCharacterSetup
impl<'de> Deserialize<'de> for hkbCharacterSetup
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 hkbCharacterSetup
impl HavokClass for hkbCharacterSetup
Source§impl PartialEq for hkbCharacterSetup
impl PartialEq for hkbCharacterSetup
Auto Trait Implementations§
impl Freeze for hkbCharacterSetup
impl RefUnwindSafe for hkbCharacterSetup
impl Send for hkbCharacterSetup
impl Sync for hkbCharacterSetup
impl Unpin for hkbCharacterSetup
impl UnwindSafe for hkbCharacterSetup
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