pub trait IMiniMapPanelBaseMethods: IMiniMapPanelBase {
Show 19 methods
// Provided methods
fn get_texture(self) -> Texture2D { ... }
fn set_texture(self, value: impl Into<Texture2D>) { ... }
fn get_canvas_renderer(self) -> CanvasRenderer { ... }
fn set_grid_size(self, value: impl Into<f32>) { ... }
fn get_grid_size(self) -> f32 { ... }
fn set_offset_z(self, value: impl Into<f32>) { ... }
fn get_offset_z(self) -> f32 { ... }
fn awake(self) { ... }
fn get_materials(self) -> Array<Material> { ... }
fn get_source_materials(self) -> Array<Material> { ... }
fn get_map_panel_materials(self) -> Array<Material> { ... }
fn get_map_image(self) -> MapImage { ... }
fn update(self) { ... }
fn late_update(self) { ... }
fn update_geometry(self) { ... }
fn create_panel_mesh(self) { ... }
fn set_mesh_to_renderer(self) { ... }
fn update_map_size(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_texture(self) -> Texture2D
fn get_texture(self) -> Texture2D
get_Texture() overload
Sourcefn set_texture(self, value: impl Into<Texture2D>)
fn set_texture(self, value: impl Into<Texture2D>)
set_Texture(crate::unity_engine::texture2d::Texture2D) overload
Sourcefn get_canvas_renderer(self) -> CanvasRenderer
fn get_canvas_renderer(self) -> CanvasRenderer
get_CanvasRenderer() overload
Sourcefn set_grid_size(self, value: impl Into<f32>)
fn set_grid_size(self, value: impl Into<f32>)
set_GridSize(f32) overload
Sourcefn get_grid_size(self) -> f32
fn get_grid_size(self) -> f32
get_GridSize() overload
Sourcefn set_offset_z(self, value: impl Into<f32>)
fn set_offset_z(self, value: impl Into<f32>)
set_OffsetZ(f32) overload
Sourcefn get_offset_z(self) -> f32
fn get_offset_z(self) -> f32
get_OffsetZ() overload
Sourcefn get_materials(self) -> Array<Material>
fn get_materials(self) -> Array<Material>
GetMaterials() overload
Sourcefn get_source_materials(self) -> Array<Material>
fn get_source_materials(self) -> Array<Material>
GetSourceMaterials() overload
Sourcefn get_map_panel_materials(self) -> Array<Material>
fn get_map_panel_materials(self) -> Array<Material>
GetMapPanelMaterials() overload
Sourcefn get_map_image(self) -> MapImage
fn get_map_image(self) -> MapImage
GetMapImage() overload
Sourcefn late_update(self)
fn late_update(self)
LateUpdate() overload
Sourcefn update_geometry(self)
fn update_geometry(self)
UpdateGeometry() overload
Sourcefn create_panel_mesh(self)
fn create_panel_mesh(self)
CreatePanelMesh() overload
Sourcefn set_mesh_to_renderer(self)
fn set_mesh_to_renderer(self)
SetMeshToRenderer() overload
Sourcefn update_map_size(self)
fn update_map_size(self)
UpdateMapSize() 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: IMiniMapPanelBase> IMiniMapPanelBaseMethods for __T
Available on crate feature
app-minimappanelbase only.