Skip to main content

ITestMoveMethods

Trait ITestMoveMethods 

Source
pub trait ITestMoveMethods: ITestMove {
    // Provided methods
    fn start(self) { ... }
    fn get_collision(self, pos: impl Into<Vector3>) -> Vector3 { ... }
    fn get_height(self, pos: impl Into<Vector3>) -> f32 { ... }
    fn update(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn start(self)

Start() overload

Source

fn get_collision(self, pos: impl Into<Vector3>) -> Vector3

GetCollision(crate::unity_engine::vector3::Vector3) overload

Source

fn get_height(self, pos: impl Into<Vector3>) -> f32

GetHeight(crate::unity_engine::vector3::Vector3) overload

Source

fn update(self)

Update() 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: ITestMove> ITestMoveMethods for __T

Available on crate feature root-testmove only.