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§
Sourcefn initialize(self)
fn initialize(self)
Initialize() overload
Sourcefn setup_end_roll(self)
fn setup_end_roll(self)
SetupEndRoll() overload
Sourcefn setup_illust(self)
fn setup_illust(self)
SetupIllust() overload
Sourcefn is_finished1(self) -> bool
fn is_finished1(self) -> bool
IsFinished1() overload
Sourcefn is_finished2(self) -> bool
fn is_finished2(self) -> bool
IsFinished2() overload
Sourcefn display_large_pic(self)
fn display_large_pic(self)
DisplayLargePic() overload
Sourcefn end_large_pic(self)
fn end_large_pic(self)
EndLargePic() overload
Sourcefn wait_start_fade_out(self, cur: impl Into<i32>, aft: impl Into<i32>) -> f32
fn wait_start_fade_out(self, cur: impl Into<i32>, aft: impl Into<i32>) -> f32
WaitStartFadeOut(i32, i32) overload
Sourcefn pre_fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>)
fn pre_fade_out(self, bef: impl Into<i32>, aft: impl Into<i32>)
PreFadeOut(i32, i32) overload
Sourcefn pre_fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>)
fn pre_fade_in(self, bef: impl Into<i32>, aft: impl Into<i32>)
PreFadeIn(i32, i32) overload
Sourcefn is_sequential(self, id: impl Into<i32>) -> bool
fn is_sequential(self, id: impl Into<i32>) -> bool
IsSequential(i32) overload
Sourcefn set_picture(self, img: impl Into<Image>, num: impl Into<i32>)
fn set_picture(self, img: impl Into<Image>, num: impl Into<i32>)
SetPicture(crate::unity_engine::ui::image::Image, i32) 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: IEndRollSetter> IEndRollSetterMethods for __T
Available on crate feature
app-endrollsetter only.