pub trait IReliancePopUpControllerMethods: IReliancePopUpController {
// Provided methods
fn awake(self) { ... }
fn update(self) { ... }
fn is_playing_anim(self) -> bool { ... }
fn pop_up(
self,
unit_l: impl Into<Unit>,
unit_r: impl Into<Unit>,
value: impl Into<i32>,
) { ... }
fn hide(self) { ... }
fn active_reliance(self) { ... }
fn active_talk(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn is_playing_anim(self) -> bool
fn is_playing_anim(self) -> bool
IsPlayingAnim() overload
Sourcefn pop_up(
self,
unit_l: impl Into<Unit>,
unit_r: impl Into<Unit>,
value: impl Into<i32>,
)
fn pop_up( self, unit_l: impl Into<Unit>, unit_r: impl Into<Unit>, value: impl Into<i32>, )
PopUp(crate::app::unit::Unit, crate::app::unit::Unit, i32) overload
Sourcefn active_reliance(self)
fn active_reliance(self)
ActiveReliance() overload
Sourcefn active_talk(self)
fn active_talk(self)
ActiveTalk() 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: IReliancePopUpController> IReliancePopUpControllerMethods for __T
Available on crate feature
app-reliancepopupcontroller only.