pub struct hkbStateMachineInternalState {Show 13 fields
pub __ptr: Option<Pointer>,
pub parent: hkReferencedObject,
pub m_activeTransitions: Vec<hkbStateMachineActiveTransitionInfo>,
pub m_transitionFlags: Vec<u8>,
pub m_wildcardTransitionFlags: Vec<u8>,
pub m_delayedTransitions: Vec<hkbStateMachineDelayedTransitionInfo>,
pub m_timeInState: f32,
pub m_lastLocalTime: f32,
pub m_currentStateId: i32,
pub m_previousStateId: i32,
pub m_nextStartStateIndexOverride: i32,
pub m_stateOrTransitionChanged: bool,
pub m_echoNextUpdate: bool,
}Expand description
§C++ Info
- name:
hkbStateMachineInternalState - version:
0 - signature:
0xbd1a7502 - size:
80(x86)/104(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: hkReferencedObjectAlternative to C++ class inheritance.
m_activeTransitions: Vec<hkbStateMachineActiveTransitionInfo>§C++ Info
- name:
activeTransitions(ctype:hkArray<struct hkbStateMachineActiveTransitionInfo>) - offset:
8(x86)/16(x86_64) - type_size:
12(x86)/16(x86_64)
m_transitionFlags: Vec<u8>§C++ Info
- name:
transitionFlags(ctype:hkArray<hkUint8>) - offset:
20(x86)/32(x86_64) - type_size:
12(x86)/16(x86_64)
m_wildcardTransitionFlags: Vec<u8>§C++ Info
- name:
wildcardTransitionFlags(ctype:hkArray<hkUint8>) - offset:
32(x86)/48(x86_64) - type_size:
12(x86)/16(x86_64)
m_delayedTransitions: Vec<hkbStateMachineDelayedTransitionInfo>§C++ Info
- name:
delayedTransitions(ctype:hkArray<struct hkbStateMachineDelayedTransitionInfo>) - offset:
44(x86)/64(x86_64) - type_size:
12(x86)/16(x86_64)
m_timeInState: f32§C++ Info
- name:
timeInState(ctype:hkReal) - offset:
56(x86)/80(x86_64) - type_size:
4(x86)/4(x86_64)
m_lastLocalTime: f32§C++ Info
- name:
lastLocalTime(ctype:hkReal) - offset:
60(x86)/84(x86_64) - type_size:
4(x86)/4(x86_64)
m_currentStateId: i32§C++ Info
- name:
currentStateId(ctype:hkInt32) - offset:
64(x86)/88(x86_64) - type_size:
4(x86)/4(x86_64)
m_previousStateId: i32§C++ Info
- name:
previousStateId(ctype:hkInt32) - offset:
68(x86)/92(x86_64) - type_size:
4(x86)/4(x86_64)
m_nextStartStateIndexOverride: i32§C++ Info
- name:
nextStartStateIndexOverride(ctype:hkInt32) - offset:
72(x86)/96(x86_64) - type_size:
4(x86)/4(x86_64)
m_stateOrTransitionChanged: bool§C++ Info
- name:
stateOrTransitionChanged(ctype:hkBool) - offset:
76(x86)/100(x86_64) - type_size:
1(x86)/1(x86_64)
m_echoNextUpdate: bool§C++ Info
- name:
echoNextUpdate(ctype:hkBool) - offset:
77(x86)/101(x86_64) - type_size:
1(x86)/1(x86_64)
Trait Implementations§
Source§impl Clone for hkbStateMachineInternalState
impl Clone for hkbStateMachineInternalState
Source§impl Debug for hkbStateMachineInternalState
impl Debug for hkbStateMachineInternalState
Source§impl<'de> Deserialize<'de> for hkbStateMachineInternalState
impl<'de> Deserialize<'de> for hkbStateMachineInternalState
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 hkbStateMachineInternalState
impl RefUnwindSafe for hkbStateMachineInternalState
impl Send for hkbStateMachineInternalState
impl Sync for hkbStateMachineInternalState
impl Unpin for hkbStateMachineInternalState
impl UnwindSafe for hkbStateMachineInternalState
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