pub trait ILevelUpSequneceMethods: ILevelUpSequnece {
Show 22 methods
// Provided methods
fn ctor(
self,
unit: impl Into<Unit>,
level: impl Into<i32>,
is_show_chara_image: impl Into<bool>,
is_talk: impl Into<bool>,
) { ... }
fn ctor_2(self, unit: impl Into<Unit>, grow: impl Into<Unit>) { ... }
fn on_create(self) { ... }
fn on_dispose(self) { ... }
fn get_res_name(self) -> Il2CppString { ... }
fn prepare(self) { ... }
fn reflect(self) { ... }
fn reload_actor(self) { ... }
fn wait_reload_actor(self) { ... }
fn effect(self) { ... }
fn is_loading_res(self) -> bool { ... }
fn open(self) { ... }
fn wait_anime(self) { ... }
fn check_param_change(self) { ... }
fn get_up_param_count(self) -> i32 { ... }
fn get_limit_param_count(self) -> i32 { ... }
fn calc_talk_mid(self) { ... }
fn talk(self) { ... }
fn key_wait(self) { ... }
fn release(self) { ... }
fn learn_job_skill(self) { ... }
fn create_bind_impl(self, super_: impl Into<ProcInst>) { ... }
}Provided Methods§
Sourcefn ctor(
self,
unit: impl Into<Unit>,
level: impl Into<i32>,
is_show_chara_image: impl Into<bool>,
is_talk: impl Into<bool>,
)
fn ctor( self, unit: impl Into<Unit>, level: impl Into<i32>, is_show_chara_image: impl Into<bool>, is_talk: impl Into<bool>, )
.ctor(crate::app::unit::Unit, i32, bool, bool) overload
Sourcefn ctor_2(self, unit: impl Into<Unit>, grow: impl Into<Unit>)
fn ctor_2(self, unit: impl Into<Unit>, grow: impl Into<Unit>)
.ctor(crate::app::unit::Unit, crate::app::unit::Unit) overload
Sourcefn on_dispose(self)
fn on_dispose(self)
OnDispose() overload
Sourcefn get_res_name(self) -> Il2CppString
fn get_res_name(self) -> Il2CppString
GetResName() overload
Sourcefn reload_actor(self)
fn reload_actor(self)
ReloadActor() overload
Sourcefn wait_reload_actor(self)
fn wait_reload_actor(self)
WaitReloadActor() overload
Sourcefn is_loading_res(self) -> bool
fn is_loading_res(self) -> bool
IsLoadingRes() overload
Sourcefn wait_anime(self)
fn wait_anime(self)
WaitAnime() overload
Sourcefn check_param_change(self)
fn check_param_change(self)
CheckParamChange() overload
Sourcefn get_up_param_count(self) -> i32
fn get_up_param_count(self) -> i32
GetUpParamCount() overload
Sourcefn get_limit_param_count(self) -> i32
fn get_limit_param_count(self) -> i32
GetLimitParamCount() overload
Sourcefn calc_talk_mid(self)
fn calc_talk_mid(self)
CalcTalkMid() overload
Sourcefn learn_job_skill(self)
fn learn_job_skill(self)
LearnJobSkill() overload
Sourcefn create_bind_impl(self, super_: impl Into<ProcInst>)
fn create_bind_impl(self, super_: impl Into<ProcInst>)
CreateBindImpl(crate::app::procinst::ProcInst) 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: ILevelUpSequnece> ILevelUpSequneceMethods for __T
Available on crate feature
app-levelupsequnece only.