Skip to main content

IMapPanelImpactMethods

Trait IMapPanelImpactMethods 

Source
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§

Source

fn get_sub_mesh_count(self) -> i32

get_SubMeshCount() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn get_source_materials(self) -> Array<Material>

GetSourceMaterials() overload

Source

fn set_vertex(self)

SetVertex() overload

Source

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

Source

fn add_land_cell(self, x: impl Into<i32>, z: impl Into<i32>)

AddLandCell(i32, i32) overload

Source

fn set_mesh(self)

SetMesh() 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: IMapPanelImpact> IMapPanelImpactMethods for __T

Available on crate feature root-mappanelimpact only.