pub trait IPhotographHaveAnimatorControllerMethods: IPhotographHaveAnimatorController {
// Provided methods
fn get_animator_controller(self) -> List_1<RuntimeAnimatorController> { ... }
fn get_anime_time(self) -> f32 { ... }
fn set_update(
self,
update: impl Into<PhotographHaveAnimatorController_UpdateAnime>,
face_anime: impl Into<PhotographHaveAnimatorController_UpdateFaceAnime>,
) { ... }
fn update(self) { ... }
fn get_sprite(self) -> Sprite { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_animator_controller(self) -> List_1<RuntimeAnimatorController>
fn get_animator_controller(self) -> List_1<RuntimeAnimatorController>
get_AnimatorController() overload
Sourcefn get_anime_time(self) -> f32
fn get_anime_time(self) -> f32
get_AnimeTime() overload
Sourcefn set_update(
self,
update: impl Into<PhotographHaveAnimatorController_UpdateAnime>,
face_anime: impl Into<PhotographHaveAnimatorController_UpdateFaceAnime>,
)
fn set_update( self, update: impl Into<PhotographHaveAnimatorController_UpdateAnime>, face_anime: impl Into<PhotographHaveAnimatorController_UpdateFaceAnime>, )
SetUpdate(crate::app::photographhaveanimatorcontroller::PhotographHaveAnimatorController_UpdateAnime, crate::app::photographhaveanimatorcontroller::PhotographHaveAnimatorController_UpdateFaceAnime) overload
Sourcefn get_sprite(self) -> Sprite
fn get_sprite(self) -> Sprite
GetSprite() 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: IPhotographHaveAnimatorController> IPhotographHaveAnimatorControllerMethods for __T
Available on crate feature
app-photographhaveanimatorcontroller only.