pub trait IUnitInfoCharaImageMaskOffsetMethods: IUnitInfoCharaImageMaskOffset {
Show 17 methods
// Provided methods
fn start(self) { ... }
fn on_enable(self) { ... }
fn on_disable(self) { ... }
fn setup(self) { ... }
fn cleanup(self) { ... }
fn reset_alpha(self) { ... }
fn set_alpha_forced(self, alpha: impl Into<f32>, is_show: impl Into<bool>) { ... }
fn set_show_form_unit_info(self, is_show: impl Into<bool>) { ... }
fn show(self) { ... }
fn hide(self) { ... }
fn update_camera(self, side: impl Into<UnitInfo_Side>) { ... }
fn set_custom_offscreen_camera_enabled(
self,
side: impl Into<UnitInfo_Side>,
is_enabled: impl Into<bool>,
) { ... }
fn update(self) { ... }
fn get_render_texture(self) -> RenderTexture { ... }
fn get_image(self) -> Image { ... }
fn is_visible(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn on_disable(self)
fn on_disable(self)
OnDisable() overload
Sourcefn reset_alpha(self)
fn reset_alpha(self)
ResetAlpha() overload
Sourcefn set_alpha_forced(self, alpha: impl Into<f32>, is_show: impl Into<bool>)
fn set_alpha_forced(self, alpha: impl Into<f32>, is_show: impl Into<bool>)
SetAlphaForced(f32, bool) overload
Sourcefn set_show_form_unit_info(self, is_show: impl Into<bool>)
fn set_show_form_unit_info(self, is_show: impl Into<bool>)
SetShowFormUnitInfo(bool) overload
Sourcefn update_camera(self, side: impl Into<UnitInfo_Side>)
fn update_camera(self, side: impl Into<UnitInfo_Side>)
UpdateCamera(crate::app::unitinfo::UnitInfo_Side) overload
Sourcefn set_custom_offscreen_camera_enabled(
self,
side: impl Into<UnitInfo_Side>,
is_enabled: impl Into<bool>,
)
fn set_custom_offscreen_camera_enabled( self, side: impl Into<UnitInfo_Side>, is_enabled: impl Into<bool>, )
SetCustomOffscreenCameraEnabled(crate::app::unitinfo::UnitInfo_Side, bool) overload
Sourcefn get_render_texture(self) -> RenderTexture
fn get_render_texture(self) -> RenderTexture
get_RenderTexture() overload
Sourcefn is_visible(self) -> bool
fn is_visible(self) -> bool
IsVisible() 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: IUnitInfoCharaImageMaskOffset> IUnitInfoCharaImageMaskOffsetMethods for __T
Available on crate feature
app-unitinfocharaimagemaskoffset only.