Skip to main content

IAreaInspectorMethods

Trait IAreaInspectorMethods 

Source
pub trait IAreaInspectorMethods: IAreaInspector {
    // Provided methods
    fn ctor(self, args: impl Into<Array<DynValue>>) { ... }
    fn is_eanble(
        self,
        x: impl Into<i32>,
        z: impl Into<i32>,
        force: impl Into<i32>,
    ) -> bool { ... }
    fn get_x1(self) -> i32 { ... }
    fn get_z1(self) -> i32 { ... }
    fn get_x2(self) -> i32 { ... }
    fn get_z2(self) -> i32 { ... }
    fn get_color(self) -> Color { ... }
}

Provided Methods§

Source

fn ctor(self, args: impl Into<Array<DynValue>>)

.ctor(::unity::Array<crate::moon_sharp::interpreter::dynvalue::DynValue>) overload

Source

fn is_eanble( self, x: impl Into<i32>, z: impl Into<i32>, force: impl Into<i32>, ) -> bool

IsEanble(i32, i32, i32) overload

Source

fn get_x1(self) -> i32

get_X1() overload

Source

fn get_z1(self) -> i32

get_Z1() overload

Source

fn get_x2(self) -> i32

get_X2() overload

Source

fn get_z2(self) -> i32

get_Z2() overload

Source

fn get_color(self) -> Color

get_Color() 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: IAreaInspector> IAreaInspectorMethods for __T

Available on crate feature app-areainspector only.