pub trait IMapPanelImpactMethods: IMapPanelImpact {
// Provided methods
fn get_sub_mesh_count(self) -> i32 { ... }
fn start(self) { ... }
fn update(self) { ... }
fn get_source_materials(self) -> Array<Material> { ... }
fn set_vertex(self) { ... }
fn set_land_image(
self,
x: impl Into<i32>,
z: impl Into<i32>,
target: impl Into<Unit>,
) { ... }
fn add_land_cell(self, x: impl Into<i32>, z: impl Into<i32>) { ... }
fn set_mesh(self) { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_sub_mesh_count(self) -> i32
fn get_sub_mesh_count(self) -> i32
get_SubMeshCount() overload
Sourcefn get_source_materials(self) -> Array<Material>
fn get_source_materials(self) -> Array<Material>
GetSourceMaterials() overload
Sourcefn set_vertex(self)
fn set_vertex(self)
SetVertex() overload
Sourcefn set_land_image(
self,
x: impl Into<i32>,
z: impl Into<i32>,
target: impl Into<Unit>,
)
fn set_land_image( self, x: impl Into<i32>, z: impl Into<i32>, target: impl Into<Unit>, )
SetLandImage(i32, i32, crate::app::unit::Unit) overload
Sourcefn add_land_cell(self, x: impl Into<i32>, z: impl Into<i32>)
fn add_land_cell(self, x: impl Into<i32>, z: impl Into<i32>)
AddLandCell(i32, i32) 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: IMapPanelImpact> IMapPanelImpactMethods for __T
Available on crate feature
root-mappanelimpact only.