pub trait IMapEditor: ISingletonMonoBehaviour_1<MapEditor> {
// Provided methods
fn m_edit_objects(self) -> Array<MapEditor_EditObject> { ... }
fn set_m_edit_objects(self, value: Array<MapEditor_EditObject>) { ... }
fn m_casual_map_edit_data(self) -> CasualMap { ... }
fn set_m_casual_map_edit_data(self, value: CasualMap) { ... }
fn m_mesh(self) -> Map_CellMesh { ... }
fn set_m_mesh(self, value: Map_CellMesh) { ... }
fn m_dictionary(self) -> Dictionary_2<i32, MapEditor_EditObject> { ... }
fn set_m_dictionary(self, value: Dictionary_2<i32, MapEditor_EditObject>) { ... }
fn m_is_enable_grid(self) -> bool { ... }
fn set_m_is_enable_grid(self, value: bool) { ... }
}Provided Methods§
fn m_edit_objects(self) -> Array<MapEditor_EditObject>
fn set_m_edit_objects(self, value: Array<MapEditor_EditObject>)
fn m_casual_map_edit_data(self) -> CasualMap
fn set_m_casual_map_edit_data(self, value: CasualMap)
fn m_mesh(self) -> Map_CellMesh
fn set_m_mesh(self, value: Map_CellMesh)
fn m_dictionary(self) -> Dictionary_2<i32, MapEditor_EditObject>
fn set_m_dictionary(self, value: Dictionary_2<i32, MapEditor_EditObject>)
fn m_is_enable_grid(self) -> bool
fn set_m_is_enable_grid(self, value: bool)
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.