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§
Sourcefn copy_animation_curve(
self,
curve: impl Into<AnimationCurve>,
) -> AnimationCurve
fn copy_animation_curve( self, curve: impl Into<AnimationCurve>, ) -> AnimationCurve
CopyAnimationCurve(crate::unity_engine::animationcurve::AnimationCurve) overload
Sourcefn update_text_transform(self)
fn update_text_transform(self)
UpdateTextTransform() 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: ICurveText> ICurveTextMethods for __T
Available on crate feature
app-curvetext only.