pub struct hkpCollidableBoundingVolumeData {
pub __ptr: Option<Pointer>,
pub m_min: [u32; 3],
pub m_expansionMin: [u8; 3],
pub m_expansionShift: u8,
pub m_max: [u32; 3],
pub m_expansionMax: [u8; 3],
pub m_padding: u8,
pub m_numChildShapeAabbs: u16,
pub m_capacityChildShapeAabbs: u16,
pub m_childShapeAabbs: Pointer,
pub m_childShapeKeys: Pointer,
}
Expand description
§C++ Info
- name:
hkpCollidableBoundingVolumeData
- version:
0
- signature:
0xb5f0e6b1
- size:
44
(x86)/56
(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_min: [u32; 3]
§C++ Info
- name:
min
(ctype:hkUint32[3]
) - offset:
0
(x86)/0
(x86_64) - type_size:
12
(x86)/12
(x86_64)
m_expansionMin: [u8; 3]
§C++ Info
- name:
expansionMin
(ctype:hkUint8[3]
) - offset:
12
(x86)/12
(x86_64) - type_size:
3
(x86)/3
(x86_64)
m_expansionShift: u8
§C++ Info
- name:
expansionShift
(ctype:hkUint8
) - offset:
15
(x86)/15
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_max: [u32; 3]
§C++ Info
- name:
max
(ctype:hkUint32[3]
) - offset:
16
(x86)/16
(x86_64) - type_size:
12
(x86)/12
(x86_64)
m_expansionMax: [u8; 3]
§C++ Info
- name:
expansionMax
(ctype:hkUint8[3]
) - offset:
28
(x86)/28
(x86_64) - type_size:
3
(x86)/3
(x86_64)
m_padding: u8
§C++ Info
- name:
padding
(ctype:hkUint8
) - offset:
31
(x86)/31
(x86_64) - type_size:
1
(x86)/1
(x86_64)
m_numChildShapeAabbs: u16
§C++ Info
- name:
numChildShapeAabbs
(ctype:hkUint16
) - offset:
32
(x86)/32
(x86_64) - type_size:
2
(x86)/2
(x86_64) - flags:
SERIALIZE_IGNORED
m_capacityChildShapeAabbs: u16
§C++ Info
- name:
capacityChildShapeAabbs
(ctype:hkUint16
) - offset:
34
(x86)/34
(x86_64) - type_size:
2
(x86)/2
(x86_64) - flags:
SERIALIZE_IGNORED
m_childShapeAabbs: Pointer
§C++ Info
- name:
childShapeAabbs
(ctype:void*
) - offset:
36
(x86)/40
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_childShapeKeys: Pointer
§C++ Info
- name:
childShapeKeys
(ctype:void*
) - offset:
40
(x86)/48
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl<'de> Deserialize<'de> for hkpCollidableBoundingVolumeData
impl<'de> Deserialize<'de> for hkpCollidableBoundingVolumeData
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
Auto Trait Implementations§
impl Freeze for hkpCollidableBoundingVolumeData
impl RefUnwindSafe for hkpCollidableBoundingVolumeData
impl Send for hkpCollidableBoundingVolumeData
impl Sync for hkpCollidableBoundingVolumeData
impl Unpin for hkpCollidableBoundingVolumeData
impl UnwindSafe for hkpCollidableBoundingVolumeData
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