#[repr(C)]pub struct BSAnimationGraphChannel {
pub vtable: *const BSAnimationGraphChannelVtbl,
pub __base: BSIntrusiveRefCounted,
pub pad0C: u32,
pub channelName: BSFixedString,
pub value: u32,
pub pad1C: u32,
}
Fields§
§vtable: *const BSAnimationGraphChannelVtbl
NOTE: If the parent does not have a virtual function even if base is inherited, vtable comes before the inherited parent member if the child has a virtual function.
- See playground
__base: BSIntrusiveRefCounted
Base class BSIntrusiveRefCounted
.
pad0C: u32
Padding for alignment.
channelName: BSFixedString
Channel name.
value: u32
Value associated with the channel.
pad1C: u32
Padding for alignment.
Implementations§
Source§impl BSAnimationGraphChannel
impl BSAnimationGraphChannel
Sourcepub const RTTI: VariantID = RTTI_BSAnimationGraphChannel
pub const RTTI: VariantID = RTTI_BSAnimationGraphChannel
Address & offset of the runtime type information (RTTI) identifier.
Sourcepub const VTABLE: [VariantID; 1] = VTABLE_BSAnimationGraphChannel
pub const VTABLE: [VariantID; 1] = VTABLE_BSAnimationGraphChannel
Address & offset of the virtual function table.
Sourcepub const fn poll_channel_update_impl(&self, _a_arg1: bool)
pub const fn poll_channel_update_impl(&self, _a_arg1: bool)
Virtual function to poll channel update (abstract function in C++).
Sourcepub const fn reset_impl(&self)
pub const fn reset_impl(&self)
Virtual function to reset the channel (abstract function in C++).
Trait Implementations§
Source§impl Debug for BSAnimationGraphChannel
impl Debug for BSAnimationGraphChannel
Auto Trait Implementations§
impl !Freeze for BSAnimationGraphChannel
impl RefUnwindSafe for BSAnimationGraphChannel
impl !Send for BSAnimationGraphChannel
impl !Sync for BSAnimationGraphChannel
impl Unpin for BSAnimationGraphChannel
impl UnwindSafe for BSAnimationGraphChannel
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