Struct hkbCharacter

Source
#[repr(C)]
pub struct hkbCharacter {
Show 23 fields pub __base: hkReferencedObject, pub nearbyCharacters: hkArray<*mut hkbCharacter>, pub currentLOD: i16, pub numTracksInLOD: i16, pub pad24: u32, pub name: hkStringPtr, pub ragdollDriver: hkRefPtr<hkbRagdollDriver>, pub characterControllerDriver: hkRefVariant, pub footIkDriver: hkRefVariant, pub handIkDriver: hkRefVariant, pub setup: hkRefPtr<hkbCharacterSetup>, pub behaviorGraph: hkRefPtr<hkbBehaviorGraph>, pub projectData: hkRefPtr<hkbProjectData>, pub animationBindingSet: hkRefVariant, pub raycastInterface: hkRefVariant, pub world: hkRefVariant, pub eventQueue: hkRefVariant, pub worldFromModel: hkRefVariant, pub poseLocal: *const *const (), pub numPoseLocal: i32, pub deleteWorldFromModel: bool, pub deletePoseLocal: bool, pub pad9E: u16,
}
Expand description

Represents a character in the Havok behavior system.

Inherits from hkReferencedObject and contains data for character setup, behavior, and physics.

Fields§

§__base: hkReferencedObject

Base class hkReferencedObject.

§nearbyCharacters: hkArray<*mut hkbCharacter>

Array of pointers to nearby characters.

  • Offset: 0x10
§currentLOD: i16

Current level of detail.

  • Offset: 0x20
§numTracksInLOD: i16

Number of tracks in the current LOD.

  • Offset: 0x22
§pad24: u32

Padding for alignment.

  • Offset: 0x24
§name: hkStringPtr

Character name.

  • Offset: 0x28
§ragdollDriver: hkRefPtr<hkbRagdollDriver>

Reference to the ragdoll driver.

  • Offset: 0x30
§characterControllerDriver: hkRefVariant

Character controller driver.

  • Offset: 0x38
§footIkDriver: hkRefVariant

Foot inverse kinematics driver.

  • Offset: 0x40
§handIkDriver: hkRefVariant

Hand inverse kinematics driver.

  • Offset: 0x48
§setup: hkRefPtr<hkbCharacterSetup>

Character setup reference.

  • Offset: 0x50
§behaviorGraph: hkRefPtr<hkbBehaviorGraph>

Behavior graph reference.

  • Offset: 0x58
§projectData: hkRefPtr<hkbProjectData>

Project data reference.

  • Offset: 0x60
§animationBindingSet: hkRefVariant

Animation binding set.

  • Offset: 0x68
§raycastInterface: hkRefVariant

Raycast interface.

  • Offset: 0x70
§world: hkRefVariant

World reference.

  • Offset: 0x78
§eventQueue: hkRefVariant

Event queue.

  • Offset: 0x80
§worldFromModel: hkRefVariant

World-from-model transform.

  • Offset: 0x88
§poseLocal: *const *const ()

Pointer to pose local data (hkSimpleArray).

  • Offset: 0x90
§numPoseLocal: i32

Number of pose local entries.

  • Offset: 0x98
§deleteWorldFromModel: bool

Flag indicating whether to delete worldFromModel.

  • Offset: 0x9C
§deletePoseLocal: bool

Flag indicating whether to delete poseLocal.

  • Offset: 0x9D
§pad9E: u16

Padding for alignment.

  • Offset: 0x9E

Implementations§

Source§

impl hkbCharacter

Source

pub const RTTI: VariantID = RTTI_hkbCharacter

RTTI identifier for this type.

Source

pub const VTABLE: [VariantID; 1] = VTABLE_hkbCharacter

Virtual function table addresses.

Source

pub fn new() -> Self

Creates a new hkbCharacter with default values.

Trait Implementations§

Source§

impl Debug for hkbCharacter

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Default for hkbCharacter

Source§

fn default() -> Self

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more