Skip to main content

IVector2ParameterMethods

Trait IVector2ParameterMethods 

Source
pub trait IVector2ParameterMethods: IVector2Parameter {
    // Provided methods
    fn ctor(self, value: impl Into<Vector2>, override_state: impl Into<bool>) { ... }
    fn interp(
        self,
        from: impl Into<Vector2>,
        to: impl Into<Vector2>,
        t: impl Into<f32>,
    ) { ... }
}

Provided Methods§

Source

fn ctor(self, value: impl Into<Vector2>, override_state: impl Into<bool>)

.ctor(crate::unity_engine::vector2::Vector2, bool) overload

Source

fn interp( self, from: impl Into<Vector2>, to: impl Into<Vector2>, t: impl Into<f32>, )

Interp(crate::unity_engine::vector2::Vector2, crate::unity_engine::vector2::Vector2, f32) 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: IVector2Parameter> IVector2ParameterMethods for __T

Available on crate feature unity_engine-rendering-vector2parameter only.