pub trait IAkRTPCPlayableBehaviourMethods: IAkRTPCPlayableBehaviour {
// Provided methods
fn set_set_rtpc_globally(self, value: impl Into<bool>) { ... }
fn get_set_rtpc_globally(self) -> bool { ... }
fn set_override_track_object(self, value: impl Into<bool>) { ... }
fn get_override_track_object(self) -> bool { ... }
fn set_rtpc_object(self, value: impl Into<GameObject>) { ... }
fn get_rtpc_object(self) -> GameObject { ... }
fn process_frame(
self,
playable: impl Into<Playable>,
info: impl Into<FrameData>,
player_data: impl Into<Object>,
) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn set_set_rtpc_globally(self, value: impl Into<bool>)
fn set_set_rtpc_globally(self, value: impl Into<bool>)
set_setRTPCGlobally(bool) overload
Sourcefn get_set_rtpc_globally(self) -> bool
fn get_set_rtpc_globally(self) -> bool
get_setRTPCGlobally() overload
Sourcefn set_override_track_object(self, value: impl Into<bool>)
fn set_override_track_object(self, value: impl Into<bool>)
set_overrideTrackObject(bool) overload
Sourcefn get_override_track_object(self) -> bool
fn get_override_track_object(self) -> bool
get_overrideTrackObject() overload
Sourcefn set_rtpc_object(self, value: impl Into<GameObject>)
fn set_rtpc_object(self, value: impl Into<GameObject>)
set_rtpcObject(crate::unity_engine::gameobject::GameObject) overload
Sourcefn get_rtpc_object(self) -> GameObject
fn get_rtpc_object(self) -> GameObject
get_rtpcObject() 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
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: IAkRTPCPlayableBehaviour> IAkRTPCPlayableBehaviourMethods for __T
Available on crate feature
root-akrtpcplayablebehaviour only.