Skip to main content

ICurveTextMethods

Trait ICurveTextMethods 

Source
pub trait ICurveTextMethods: ICurveText {
    // Provided methods
    fn awake(self) { ... }
    fn update(self) { ... }
    fn copy_animation_curve(
        self,
        curve: impl Into<AnimationCurve>,
    ) -> AnimationCurve { ... }
    fn update_text_transform(self) { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn awake(self)

Awake() overload

Source

fn update(self)

Update() overload

Source

fn copy_animation_curve( self, curve: impl Into<AnimationCurve>, ) -> AnimationCurve

CopyAnimationCurve(crate::unity_engine::animationcurve::AnimationCurve) overload

Source

fn update_text_transform(self)

UpdateTextTransform() 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: ICurveText> ICurveTextMethods for __T

Available on crate feature app-curvetext only.