Skip to main content

IEndRollSetterMethods

Trait IEndRollSetterMethods 

Source
pub trait IEndRollSetterMethods: IEndRollSetter {
Show 18 methods // Provided methods fn initialize(self) { ... } fn setup_end_roll(self) { ... } fn setup_illust(self) { ... } fn update(self) { ... } fn update1(self) { ... } fn update2(self) { ... } fn is_finished1(self) -> bool { ... } fn is_finished2(self) -> bool { ... } fn display_large_pic(self) { ... } fn end_large_pic(self) { ... } fn wait_start_fade_out( self, cur: impl Into<i32>, aft: impl Into<i32>, ) -> f32 { ... } fn pre_fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>) { ... } fn fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>) -> f32 { ... } fn pre_fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>) { ... } fn fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>) -> f32 { ... } fn is_sequential(self, id: impl Into<i32>) -> bool { ... } fn set_picture(self, img: impl Into<Image>, num: impl Into<i32>) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn initialize(self)

Initialize() overload

Source

fn setup_end_roll(self)

SetupEndRoll() overload

Source

fn setup_illust(self)

SetupIllust() overload

Source

fn update(self)

Update() overload

Source

fn update1(self)

Update1() overload

Source

fn update2(self)

Update2() overload

Source

fn is_finished1(self) -> bool

IsFinished1() overload

Source

fn is_finished2(self) -> bool

IsFinished2() overload

Source

fn display_large_pic(self)

DisplayLargePic() overload

Source

fn end_large_pic(self)

EndLargePic() overload

Source

fn wait_start_fade_out(self, cur: impl Into<i32>, aft: impl Into<i32>) -> f32

WaitStartFadeOut(i32, i32) overload

Source

fn pre_fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>)

PreFadeOut(i32, i32) overload

Source

fn fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>) -> f32

FadeOut(i32, i32) overload

Source

fn pre_fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>)

PreFadeIn(i32, i32) overload

Source

fn fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>) -> f32

FadeIn(i32, i32) overload

Source

fn is_sequential(self, id: impl Into<i32>) -> bool

IsSequential(i32) overload

Source

fn set_picture(self, img: impl Into<Image>, num: impl Into<i32>)

SetPicture(crate::unity_engine::ui::image::Image, i32) 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: IEndRollSetter> IEndRollSetterMethods for __T

Available on crate feature app-endrollsetter only.