Skip to main content

IAkRTPCPlayableBehaviourMethods

Trait IAkRTPCPlayableBehaviourMethods 

Source
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§

Source

fn set_set_rtpc_globally(self, value: impl Into<bool>)

set_setRTPCGlobally(bool) overload

Source

fn get_set_rtpc_globally(self) -> bool

get_setRTPCGlobally() overload

Source

fn set_override_track_object(self, value: impl Into<bool>)

set_overrideTrackObject(bool) overload

Source

fn get_override_track_object(self) -> bool

get_overrideTrackObject() overload

Source

fn set_rtpc_object(self, value: impl Into<GameObject>)

set_rtpcObject(crate::unity_engine::gameobject::GameObject) overload

Source

fn get_rtpc_object(self) -> GameObject

get_rtpcObject() overload

Source

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

Source

fn ctor(self)

.ctor() 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§

Source§

impl<__T: IAkRTPCPlayableBehaviour> IAkRTPCPlayableBehaviourMethods for __T

Available on crate feature root-akrtpcplayablebehaviour only.