pub trait ICinemachineMixerMethods: ICinemachineMixer {
// Provided methods
fn on_playable_destroy(self, playable: impl Into<Playable>) { ... }
fn prepare_frame(
self,
playable: impl Into<Playable>,
info: impl Into<FrameData>,
) { ... }
fn process_frame(
self,
playable: impl Into<Playable>,
info: impl Into<FrameData>,
player_data: impl Into<Object>,
) { ... }
fn get_delta_time(self, delta_time: impl Into<f32>) -> f32 { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_playable_destroy(self, playable: impl Into<Playable>)
fn on_playable_destroy(self, playable: impl Into<Playable>)
OnPlayableDestroy(crate::unity_engine::playables::playable::Playable) overload
Sourcefn prepare_frame(
self,
playable: impl Into<Playable>,
info: impl Into<FrameData>,
)
fn prepare_frame( self, playable: impl Into<Playable>, info: impl Into<FrameData>, )
PrepareFrame(crate::unity_engine::playables::playable::Playable, crate::unity_engine::playables::framedata::FrameData) overload
Sourcefn process_frame(
self,
playable: impl Into<Playable>,
info: impl Into<FrameData>,
player_data: impl Into<Object>,
)
fn process_frame( self, playable: impl Into<Playable>, info: impl Into<FrameData>, player_data: impl Into<Object>, )
ProcessFrame(crate::unity_engine::playables::playable::Playable, crate::unity_engine::playables::framedata::FrameData, crate::system::object::Object) overload
Sourcefn get_delta_time(self, delta_time: impl Into<f32>) -> f32
fn get_delta_time(self, delta_time: impl Into<f32>) -> f32
GetDeltaTime(f32) 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: ICinemachineMixer> ICinemachineMixerMethods for __T
Available on crate feature
root-cinemachinemixer only.