pub trait IMapInfoGaugeMainLocatorRootMethods: IMapInfoGaugeMainLocatorRoot {
Show 16 methods
// Provided methods
fn awake(self) { ... }
fn update_position(self, unit: impl Into<Unit>) { ... }
fn update_param(self, unit: impl Into<Unit>) { ... }
fn is_set_position(self) -> bool { ... }
fn is_set_param(self) -> bool { ... }
fn set_icon(self, unit: impl Into<Unit>) { ... }
fn delete_disuse_locator_root(self, unit: impl Into<Unit>) { ... }
fn get_sub_locator_root(self) -> MapInfoGaugeSubLocatorRoot { ... }
fn is_display_outside(
self,
unit: impl Into<Unit>,
width: impl Into<f32>,
height: impl Into<f32>,
camera: impl Into<Camera>,
) -> bool { ... }
fn init_hp_forecast(self) { ... }
fn set_hp_forecast(self, before: impl Into<i32>, after: impl Into<i32>) { ... }
fn init_break(self) { ... }
fn set_break(self, is_break: impl Into<bool>) { ... }
fn get_is_complete(self) -> bool { ... }
fn set_is_complete(self, value: impl Into<bool>) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn update_position(self, unit: impl Into<Unit>)
fn update_position(self, unit: impl Into<Unit>)
UpdatePosition(crate::app::unit::Unit) overload
Sourcefn update_param(self, unit: impl Into<Unit>)
fn update_param(self, unit: impl Into<Unit>)
UpdateParam(crate::app::unit::Unit) overload
Sourcefn is_set_position(self) -> bool
fn is_set_position(self) -> bool
IsSetPosition() overload
Sourcefn is_set_param(self) -> bool
fn is_set_param(self) -> bool
IsSetParam() overload
Sourcefn delete_disuse_locator_root(self, unit: impl Into<Unit>)
fn delete_disuse_locator_root(self, unit: impl Into<Unit>)
DeleteDisuseLocatorRoot(crate::app::unit::Unit) overload
Sourcefn get_sub_locator_root(self) -> MapInfoGaugeSubLocatorRoot
fn get_sub_locator_root(self) -> MapInfoGaugeSubLocatorRoot
get_SubLocatorRoot() overload
Sourcefn is_display_outside(
self,
unit: impl Into<Unit>,
width: impl Into<f32>,
height: impl Into<f32>,
camera: impl Into<Camera>,
) -> bool
fn is_display_outside( self, unit: impl Into<Unit>, width: impl Into<f32>, height: impl Into<f32>, camera: impl Into<Camera>, ) -> bool
IsDisplayOutside(crate::app::unit::Unit, f32, f32, crate::unity_engine::camera::Camera) overload
Sourcefn init_hp_forecast(self)
fn init_hp_forecast(self)
InitHpForecast() overload
Sourcefn set_hp_forecast(self, before: impl Into<i32>, after: impl Into<i32>)
fn set_hp_forecast(self, before: impl Into<i32>, after: impl Into<i32>)
SetHpForecast(i32, i32) overload
Sourcefn init_break(self)
fn init_break(self)
InitBreak() overload
Sourcefn get_is_complete(self) -> bool
fn get_is_complete(self) -> bool
get_IsComplete() overload
Sourcefn set_is_complete(self, value: impl Into<bool>)
fn set_is_complete(self, value: impl Into<bool>)
set_IsComplete(bool) 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: IMapInfoGaugeMainLocatorRoot> IMapInfoGaugeMainLocatorRootMethods for __T
Available on crate feature
app-mapinfogaugemainlocatorroot only.