pub struct hkbContext {
pub __ptr: Option<Pointer>,
pub m_character: Pointer,
pub m_behavior: Pointer,
pub m_nodeToIndexMap: Pointer,
pub m_eventQueue: Pointer,
pub m_sharedEventQueue: Pointer,
pub m_generatorOutputListener: Pointer,
pub m_eventTriggeredTransition: bool,
pub m_world: Pointer,
pub m_attachmentManager: Pointer,
pub m_animationCache: Pointer,
}
Expand description
§C++ Info
- name:
hkbContext
- version:
1
- signature:
0xe0c4d4a7
- size:
40
(x86)/80
(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_character: Pointer
§C++ Info
- name:
character
(ctype:void*
) - offset:
0
(x86)/0
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_behavior: Pointer
§C++ Info
- name:
behavior
(ctype:void*
) - offset:
4
(x86)/8
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_nodeToIndexMap: Pointer
§C++ Info
- name:
nodeToIndexMap
(ctype:void*
) - offset:
8
(x86)/16
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_eventQueue: Pointer
§C++ Info
- name:
eventQueue
(ctype:void*
) - offset:
12
(x86)/24
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
§C++ Info
- name:
sharedEventQueue
(ctype:void*
) - offset:
16
(x86)/32
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_generatorOutputListener: Pointer
§C++ Info
- name:
generatorOutputListener
(ctype:struct hkbGeneratorOutputListener*
) - offset:
20
(x86)/40
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_eventTriggeredTransition: bool
§C++ Info
- name:
eventTriggeredTransition
(ctype:hkBool
) - offset:
24
(x86)/48
(x86_64) - type_size:
1
(x86)/1
(x86_64) - flags:
SERIALIZE_IGNORED
m_world: Pointer
§C++ Info
- name:
world
(ctype:void*
) - offset:
28
(x86)/56
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_attachmentManager: Pointer
§C++ Info
- name:
attachmentManager
(ctype:void*
) - offset:
32
(x86)/64
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
m_animationCache: Pointer
§C++ Info
- name:
animationCache
(ctype:void*
) - offset:
36
(x86)/72
(x86_64) - type_size:
4
(x86)/8
(x86_64) - flags:
SERIALIZE_IGNORED
Trait Implementations§
Source§impl Clone for hkbContext
impl Clone for hkbContext
Source§impl Debug for hkbContext
impl Debug for hkbContext
Source§impl Default for hkbContext
impl Default for hkbContext
Source§impl<'de> Deserialize<'de> for hkbContext
impl<'de> Deserialize<'de> for hkbContext
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 hkbContext
impl HavokClass for hkbContext
Source§impl PartialEq for hkbContext
impl PartialEq for hkbContext
Auto Trait Implementations§
impl Freeze for hkbContext
impl RefUnwindSafe for hkbContext
impl Send for hkbContext
impl Sync for hkbContext
impl Unpin for hkbContext
impl UnwindSafe for hkbContext
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