pub trait IAkEventMethods: IAkEvent {
// Provided methods
fn start(self) { ... }
fn callback(
self,
in_cookie: impl Into<Object>,
in_type: impl Into<AkCallbackType>,
in_info: impl Into<AkCallbackInfo>,
) { ... }
fn handle_event(self, in_game_object: impl Into<GameObject>) { ... }
fn stop(self, transition_duration: impl Into<i32>) { ... }
fn stop_2(
self,
transition_duration: impl Into<i32>,
curve_interpolation: impl Into<AkCurveInterpolation>,
) { ... }
fn get_event_id(self) -> i32 { ... }
fn get_value_guid(self) -> Array<u8> { ... }
fn get_m_callback_data(self) -> AkEventCallbackData { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn callback(
self,
in_cookie: impl Into<Object>,
in_type: impl Into<AkCallbackType>,
in_info: impl Into<AkCallbackInfo>,
)
fn callback( self, in_cookie: impl Into<Object>, in_type: impl Into<AkCallbackType>, in_info: impl Into<AkCallbackInfo>, )
Callback(crate::system::object::Object, crate::root::akcallbacktype::AkCallbackType, crate::root::akcallbackinfo::AkCallbackInfo) overload
Sourcefn handle_event(self, in_game_object: impl Into<GameObject>)
fn handle_event(self, in_game_object: impl Into<GameObject>)
HandleEvent(crate::unity_engine::gameobject::GameObject) overload
Sourcefn stop_2(
self,
transition_duration: impl Into<i32>,
curve_interpolation: impl Into<AkCurveInterpolation>,
)
fn stop_2( self, transition_duration: impl Into<i32>, curve_interpolation: impl Into<AkCurveInterpolation>, )
Stop(i32, crate::root::akcurveinterpolation::AkCurveInterpolation) overload
Sourcefn get_event_id(self) -> i32
fn get_event_id(self) -> i32
get_eventID() overload
Sourcefn get_value_guid(self) -> Array<u8>
fn get_value_guid(self) -> Array<u8>
get_valueGuid() overload
Sourcefn get_m_callback_data(self) -> AkEventCallbackData
fn get_m_callback_data(self) -> AkEventCallbackData
get_m_callbackData() overload
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.
Implementors§
impl<__T: IAkEvent> IAkEventMethods for __T
Available on crate feature
root-akevent only.