#[repr(C)]pub struct hkbProjectStringData {
pub __base: hkReferencedObject,
pub animationFilenames: hkArray<hkStringPtr>,
pub behaviorFilenames: hkArray<hkStringPtr>,
pub characterFilenames: hkArray<hkStringPtr>,
pub eventNames: hkArray<hkStringPtr>,
pub animationPath: hkStringPtr,
pub behaviorPath: hkStringPtr,
pub characterPath: hkStringPtr,
pub scriptsPath: hkStringPtr,
pub fullPathToSource: hkStringPtr,
pub rootPath: hkStringPtr,
}
Expand description
Represents string data for Havok project configurations.
Fields§
§__base: hkReferencedObject
Base class hkReferencedObject
.
- Offset:
0x0
animationFilenames: hkArray<hkStringPtr>
Array of animation filenames.
- Offset:
0x10
behaviorFilenames: hkArray<hkStringPtr>
Array of behavior filenames.
- Offset:
0x20
characterFilenames: hkArray<hkStringPtr>
Array of character filenames.
- Offset:
0x30
eventNames: hkArray<hkStringPtr>
Array of event names.
- Offset:
0x40
animationPath: hkStringPtr
Path to the animations.
- Offset:
0x50
behaviorPath: hkStringPtr
Path to the behaviors.
- Offset:
0x58
characterPath: hkStringPtr
Path to the characters.
- Offset:
0x60
scriptsPath: hkStringPtr
Path to the scripts.
- Offset:
0x68
fullPathToSource: hkStringPtr
Full path to the source.
- Offset:
0x70
rootPath: hkStringPtr
Root path.
- Offset:
0x78
Implementations§
Trait Implementations§
Source§impl Default for hkbProjectStringData
impl Default for hkbProjectStringData
Source§impl hkRefPtrCounted for hkbProjectStringData
impl hkRefPtrCounted for hkbProjectStringData
fn AddReference(&self)
fn RemoveReference(&self)
Auto Trait Implementations§
impl !Freeze for hkbProjectStringData
impl RefUnwindSafe for hkbProjectStringData
impl !Send for hkbProjectStringData
impl !Sync for hkbProjectStringData
impl Unpin for hkbProjectStringData
impl UnwindSafe for hkbProjectStringData
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