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§
Sourcefn on_destroy(self)
fn on_destroy(self)
OnDestroy() overload
Sourcefn tick_flash(self)
fn tick_flash(self)
TickFlash() overload
Sourcefn tick_appear(self)
fn tick_appear(self)
TickAppear() overload
Sourcefn tick_scaling(self)
fn tick_scaling(self)
TickScaling() overload
Sourcefn start_effect(self, sprite: impl Into<Sprite>)
fn start_effect(self, sprite: impl Into<Sprite>)
StartEffect(crate::unity_engine::sprite::Sprite) overload
Sourcefn reset_effect(self)
fn reset_effect(self)
ResetEffect() overload
Sourcefn get_is_appear(self) -> bool
fn get_is_appear(self) -> bool
get_IsAppear() overload
Sourcefn get_is_end(self) -> bool
fn get_is_end(self) -> bool
get_IsEnd() overload
Sourcefn try_skip_anime(
self,
animator: impl Into<Animator>,
state_name: impl Into<Il2CppString>,
)
fn try_skip_anime( self, animator: impl Into<Animator>, state_name: impl Into<Il2CppString>, )
TrySkipAnime(crate::unity_engine::animator::Animator, ::unity::Il2CppString) overload
Sourcefn is_end_anime(self, animator: impl Into<Animator>) -> bool
fn is_end_anime(self, animator: impl Into<Animator>) -> bool
IsEndAnime(crate::unity_engine::animator::Animator) 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: IPhotoAppearContent> IPhotoAppearContentMethods for __T
Available on crate feature
app-photoappearcontent only.