Skip to main content

IPhotoAppearContentMethods

Trait IPhotoAppearContentMethods 

Source
pub trait IPhotoAppearContentMethods: IPhotoAppearContent {
Show 14 methods // Provided methods fn on_destroy(self) { ... } fn start(self) { ... } fn update(self) { ... } fn tick_flash(self) { ... } fn tick_appear(self) { ... } fn tick_scaling(self) { ... } fn start_effect(self, sprite: impl Into<Sprite>) { ... } fn reset_effect(self) { ... } fn skip(self) { ... } fn get_is_appear(self) -> bool { ... } fn get_is_end(self) -> bool { ... } fn try_skip_anime( self, animator: impl Into<Animator>, state_name: impl Into<Il2CppString>, ) { ... } fn is_end_anime(self, animator: impl Into<Animator>) -> bool { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn tick_flash(self)

TickFlash() overload

Source

fn tick_appear(self)

TickAppear() overload

Source

fn tick_scaling(self)

TickScaling() overload

Source

fn start_effect(self, sprite: impl Into<Sprite>)

StartEffect(crate::unity_engine::sprite::Sprite) overload

Source

fn reset_effect(self)

ResetEffect() overload

Source

fn skip(self)

Skip() overload

Source

fn get_is_appear(self) -> bool

get_IsAppear() overload

Source

fn get_is_end(self) -> bool

get_IsEnd() overload

Source

fn try_skip_anime( self, animator: impl Into<Animator>, state_name: impl Into<Il2CppString>, )

TrySkipAnime(crate::unity_engine::animator::Animator, ::unity::Il2CppString) overload

Source

fn is_end_anime(self, animator: impl Into<Animator>) -> bool

IsEndAnime(crate::unity_engine::animator::Animator) 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: IPhotoAppearContent> IPhotoAppearContentMethods for __T

Available on crate feature app-photoappearcontent only.