Skip to main content

IMiniMapControllerMethods

Trait IMiniMapControllerMethods 

Source
pub trait IMiniMapControllerMethods: IMiniMapController {
Show 22 methods // Provided methods fn try_get_component(self) { ... } fn start(self) { ... } fn update(self) { ... } fn late_update(self) { ... } fn update_core(self) { ... } fn update_terrain(self) { ... } fn update_symbol_and_icon_list(self) { ... } fn update_unit_icons(self) { ... } fn update_event_symbols(self) { ... } fn initialize(self) { ... } fn update_alpha(self) -> bool { ... } fn change_display_mode_by_game_config(self) { ... } fn get_map_image(self) -> MapImage { ... } fn change_mode(self) { ... } fn change_display_pos_size( self, display_pos_size: impl Into<MiniMapController_DisplayPosSize>, ) { ... } fn change_mode_2(self, mode: impl Into<MiniMapController_Mode>) { ... } fn set_dirty(self) { ... } fn calc_offset( self, alignment: impl Into<MiniMapController_Alignment>, scale: impl Into<f32>, ) { ... } fn show(self) { ... } fn hide(self) { ... } fn zoom(self, zoom: impl Into<f32>) { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn try_get_component(self)

TryGetComponent() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn late_update(self)

LateUpdate() overload

Source

fn update_core(self)

UpdateCore() overload

Source

fn update_terrain(self)

UpdateTerrain() overload

Source

fn update_symbol_and_icon_list(self)

UpdateSymbolAndIconList() overload

Source

fn update_unit_icons(self)

UpdateUnitIcons() overload

Source

fn update_event_symbols(self)

UpdateEventSymbols() overload

Source

fn initialize(self)

Initialize() overload

Source

fn update_alpha(self) -> bool

UpdateAlpha() overload

Source

fn change_display_mode_by_game_config(self)

ChangeDisplayModeByGameConfig() overload

Source

fn get_map_image(self) -> MapImage

GetMapImage() overload

Source

fn change_mode(self)

ChangeMode() overload

Source

fn change_display_pos_size( self, display_pos_size: impl Into<MiniMapController_DisplayPosSize>, )

ChangeDisplayPosSize(crate::app::minimapcontroller::MiniMapController_DisplayPosSize) overload

Source

fn change_mode_2(self, mode: impl Into<MiniMapController_Mode>)

ChangeMode(crate::app::minimapcontroller::MiniMapController_Mode) overload

Source

fn set_dirty(self)

SetDirty() overload

Source

fn calc_offset( self, alignment: impl Into<MiniMapController_Alignment>, scale: impl Into<f32>, )

CalcOffset(crate::app::minimapcontroller::MiniMapController_Alignment, f32) overload

Source

fn show(self)

Show() overload

Source

fn hide(self)

Hide() overload

Source

fn zoom(self, zoom: impl Into<f32>)

Zoom(f32) overload

Source

fn ctor(self)

.ctor() 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: IMiniMapController> IMiniMapControllerMethods for __T

Available on crate feature app-minimapcontroller only.