Skip to main content

IMagicFlying

Trait IMagicFlying 

Source
pub trait IMagicFlying: IMonoBehaviour {
    // Provided methods
    fn m_start_pos(self) -> Vector3 { ... }
    fn set_m_start_pos(self, value: Vector3) { ... }
    fn m_end_pos(self) -> Vector3 { ... }
    fn set_m_end_pos(self, value: Vector3) { ... }
    fn m_time(self) -> f32 { ... }
    fn set_m_time(self, value: f32) { ... }
    fn m_arrival_time(self) -> f32 { ... }
    fn set_m_arrival_time(self, value: f32) { ... }
    fn ease_type(self) -> Curve_Type { ... }
    fn set_ease_type(self, value: Curve_Type) { ... }
    fn ease_power(self) -> i32 { ... }
    fn set_ease_power(self, value: i32) { ... }
}

Provided Methods§

Source

fn m_start_pos(self) -> Vector3

Source

fn set_m_start_pos(self, value: Vector3)

Source

fn m_end_pos(self) -> Vector3

Source

fn set_m_end_pos(self, value: Vector3)

Source

fn m_time(self) -> f32

Source

fn set_m_time(self, value: f32)

Source

fn m_arrival_time(self) -> f32

Source

fn set_m_arrival_time(self, value: f32)

Source

fn ease_type(self) -> Curve_Type

Source

fn set_ease_type(self, value: Curve_Type)

Source

fn ease_power(self) -> i32

Source

fn set_ease_power(self, value: i32)

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§