Skip to main content

ILevelUpSequneceMethods

Trait ILevelUpSequneceMethods 

Source
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§

Source

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

Source

fn ctor_2(self, unit: impl Into<Unit>, grow: impl Into<Unit>)

.ctor(crate::app::unit::Unit, crate::app::unit::Unit) overload

Source

fn on_create(self)

OnCreate() overload

Source

fn on_dispose(self)

OnDispose() overload

Source

fn get_res_name(self) -> Il2CppString

GetResName() overload

Source

fn prepare(self)

Prepare() overload

Source

fn reflect(self)

Reflect() overload

Source

fn reload_actor(self)

ReloadActor() overload

Source

fn wait_reload_actor(self)

WaitReloadActor() overload

Source

fn effect(self)

Effect() overload

Source

fn is_loading_res(self) -> bool

IsLoadingRes() overload

Source

fn open(self)

Open() overload

Source

fn wait_anime(self)

WaitAnime() overload

Source

fn check_param_change(self)

CheckParamChange() overload

Source

fn get_up_param_count(self) -> i32

GetUpParamCount() overload

Source

fn get_limit_param_count(self) -> i32

GetLimitParamCount() overload

Source

fn calc_talk_mid(self)

CalcTalkMid() overload

Source

fn talk(self)

Talk() overload

Source

fn key_wait(self)

KeyWait() overload

Source

fn release(self)

Release() overload

Source

fn learn_job_skill(self)

LearnJobSkill() overload

Source

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§

Source§

impl<__T: ILevelUpSequnece> ILevelUpSequneceMethods for __T

Available on crate feature app-levelupsequnece only.