pub struct hkbStateMachineTransitionInfo {
pub __ptr: Option<Pointer>,
pub m_triggerInterval: hkbStateMachineTimeInterval,
pub m_initiateInterval: hkbStateMachineTimeInterval,
pub m_transition: Pointer,
pub m_condition: Pointer,
pub m_eventId: i32,
pub m_toStateId: i32,
pub m_fromNestedStateId: i32,
pub m_toNestedStateId: i32,
pub m_priority: i16,
pub m_flags: TransitionFlags,
}
Expand description
§C++ Info
- name:
hkbStateMachineTransitionInfo
- version:
1
- signature:
0xcdec8025
- size:
60
(x86)/72
(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_triggerInterval: hkbStateMachineTimeInterval
§C++ Info
- name:
triggerInterval
(ctype:struct hkbStateMachineTimeInterval
) - offset:
0
(x86)/0
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_initiateInterval: hkbStateMachineTimeInterval
§C++ Info
- name:
initiateInterval
(ctype:struct hkbStateMachineTimeInterval
) - offset:
16
(x86)/16
(x86_64) - type_size:
16
(x86)/16
(x86_64)
m_transition: Pointer
§C++ Info
- name:
transition
(ctype:struct hkbTransitionEffect*
) - offset:
32
(x86)/32
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_condition: Pointer
§C++ Info
- name:
condition
(ctype:struct hkbCondition*
) - offset:
36
(x86)/40
(x86_64) - type_size:
4
(x86)/8
(x86_64)
m_eventId: i32
§C++ Info
- name:
eventId
(ctype:hkInt32
) - offset:
40
(x86)/48
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_toStateId: i32
§C++ Info
- name:
toStateId
(ctype:hkInt32
) - offset:
44
(x86)/52
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_fromNestedStateId: i32
§C++ Info
- name:
fromNestedStateId
(ctype:hkInt32
) - offset:
48
(x86)/56
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_toNestedStateId: i32
§C++ Info
- name:
toNestedStateId
(ctype:hkInt32
) - offset:
52
(x86)/60
(x86_64) - type_size:
4
(x86)/4
(x86_64)
m_priority: i16
§C++ Info
- name:
priority
(ctype:hkInt16
) - offset:
56
(x86)/64
(x86_64) - type_size:
2
(x86)/2
(x86_64)
m_flags: TransitionFlags
§C++ Info
- name:
flags
(ctype:flags TransitionFlags
) - offset:
58
(x86)/66
(x86_64) - type_size:
2
(x86)/2
(x86_64)
Trait Implementations§
Source§impl<'de> Deserialize<'de> for hkbStateMachineTransitionInfo
impl<'de> Deserialize<'de> for hkbStateMachineTransitionInfo
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 hkbStateMachineTransitionInfo
impl RefUnwindSafe for hkbStateMachineTransitionInfo
impl Send for hkbStateMachineTransitionInfo
impl Sync for hkbStateMachineTransitionInfo
impl Unpin for hkbStateMachineTransitionInfo
impl UnwindSafe for hkbStateMachineTransitionInfo
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