pub trait IMapLayer_DataMethods: IMapLayer_Data {
Show 22 methods
// Provided methods
fn get_x(self) -> i32 { ... }
fn set_x(self, value: impl Into<i32>) { ... }
fn get_z(self) -> i32 { ... }
fn set_z(self, value: impl Into<i32>) { ... }
fn get_w(self) -> i32 { ... }
fn set_w(self, value: impl Into<i32>) { ... }
fn get_h(self) -> i32 { ... }
fn set_h(self, value: impl Into<i32>) { ... }
fn get_group(self) -> i32 { ... }
fn set_group(self, value: impl Into<i32>) { ... }
fn get_tid(self) -> Il2CppString { ... }
fn set_tid(self, value: impl Into<Il2CppString>) { ... }
fn get_index(self) -> i32 { ... }
fn set_index(self, value: impl Into<i32>) { ... }
fn get_enable(self) -> bool { ... }
fn set_enable(self, value: impl Into<bool>) { ... }
fn is_outside(self, x: impl Into<i32>, z: impl Into<i32>) -> bool { ... }
fn is_inside(self, x: impl Into<i32>, z: impl Into<i32>) -> bool { ... }
fn is_connect(self, data: impl Into<MapLayer_Data>) -> bool { ... }
fn get_terrain(self) -> TerrainData_2 { ... }
fn is_roof(self) -> bool { ... }
fn ctor(self) { ... }
}Provided Methods§
Sourcefn get_tid(self) -> Il2CppString
fn get_tid(self) -> Il2CppString
get_Tid() overload
Sourcefn set_tid(self, value: impl Into<Il2CppString>)
fn set_tid(self, value: impl Into<Il2CppString>)
set_Tid(::unity::Il2CppString) overload
Sourcefn get_enable(self) -> bool
fn get_enable(self) -> bool
get_Enable() overload
Sourcefn set_enable(self, value: impl Into<bool>)
fn set_enable(self, value: impl Into<bool>)
set_Enable(bool) overload
Sourcefn is_outside(self, x: impl Into<i32>, z: impl Into<i32>) -> bool
fn is_outside(self, x: impl Into<i32>, z: impl Into<i32>) -> bool
IsOutside(i32, i32) overload
Sourcefn is_connect(self, data: impl Into<MapLayer_Data>) -> bool
fn is_connect(self, data: impl Into<MapLayer_Data>) -> bool
IsConnect(crate::app::maplayer::MapLayer_Data) overload
Sourcefn get_terrain(self) -> TerrainData_2
fn get_terrain(self) -> TerrainData_2
GetTerrain() 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: IMapLayer_Data> IMapLayer_DataMethods for __T
Available on crate feature
app-maplayer only.