Skip to main content

ICurveText

Trait ICurveText 

Source
pub trait ICurveText: IMonoBehaviour {
    // Provided methods
    fn m_text_component(self) -> TMP_Text { ... }
    fn set_m_text_component(self, value: TMP_Text) { ... }
    fn vertex_curve(self) -> AnimationCurve { ... }
    fn set_vertex_curve(self, value: AnimationCurve) { ... }
    fn m_curve_scale(self) -> f32 { ... }
    fn set_m_curve_scale(self, value: f32) { ... }
    fn m_is_rotate(self) -> bool { ... }
    fn set_m_is_rotate(self, value: bool) { ... }
    fn m_use_rect_width(self) -> bool { ... }
    fn set_m_use_rect_width(self, value: bool) { ... }
    fn m_is_distort(self) -> bool { ... }
    fn set_m_is_distort(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_text_component(self) -> TMP_Text

Source

fn set_m_text_component(self, value: TMP_Text)

Source

fn vertex_curve(self) -> AnimationCurve

Source

fn set_vertex_curve(self, value: AnimationCurve)

Source

fn m_curve_scale(self) -> f32

Source

fn set_m_curve_scale(self, value: f32)

Source

fn m_is_rotate(self) -> bool

Source

fn set_m_is_rotate(self, value: bool)

Source

fn m_use_rect_width(self) -> bool

Source

fn set_m_use_rect_width(self, value: bool)

Source

fn m_is_distort(self) -> bool

Source

fn set_m_is_distort(self, value: bool)

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§