pub trait IMyRoomEventClipMethods: IMyRoomEventClip {
// Provided methods
fn get_clip_caps(self) -> ClipCaps { ... }
fn create_playable(
self,
graph: impl Into<PlayableGraph>,
owner: impl Into<GameObject>,
) -> Playable { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_clip_caps(self) -> ClipCaps
fn get_clip_caps(self) -> ClipCaps
get_clipCaps() overload
Sourcefn create_playable(
self,
graph: impl Into<PlayableGraph>,
owner: impl Into<GameObject>,
) -> Playable
fn create_playable( self, graph: impl Into<PlayableGraph>, owner: impl Into<GameObject>, ) -> Playable
CreatePlayable(crate::unity_engine::playables::playablegraph::PlayableGraph, crate::unity_engine::gameobject::GameObject) 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: IMyRoomEventClip> IMyRoomEventClipMethods for __T
Available on crate feature
app-myroomeventclip only.