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§
Sourcefn get_collision(self, pos: impl Into<Vector3>) -> Vector3
fn get_collision(self, pos: impl Into<Vector3>) -> Vector3
GetCollision(crate::unity_engine::vector3::Vector3) overload
Sourcefn get_height(self, pos: impl Into<Vector3>) -> f32
fn get_height(self, pos: impl Into<Vector3>) -> f32
GetHeight(crate::unity_engine::vector3::Vector3) 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: ITestMove> ITestMoveMethods for __T
Available on crate feature
root-testmove only.