Skip to main content

ITerrainPaintGetterMethods

Trait ITerrainPaintGetterMethods 

Source
pub trait ITerrainPaintGetterMethods: ITerrainPaintGetter {
    // Provided methods
    fn get(self, x: impl Into<f32>, y: impl Into<f32>) -> Il2CppString { ... }
    fn get_2(self, pos: impl Into<Vector2>) -> Il2CppString { ... }
    fn on_draw_gizmos(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get(self, x: impl Into<f32>, y: impl Into<f32>) -> Il2CppString

Get(f32, f32) overload

Source

fn get_2(self, pos: impl Into<Vector2>) -> Il2CppString

Get(crate::unity_engine::vector2::Vector2) overload

Source

fn on_draw_gizmos(self)

OnDrawGizmos() 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: ITerrainPaintGetter> ITerrainPaintGetterMethods for __T

Available on crate feature app-terrainpaintgetter only.