Skip to main content

ITextMeshAnimation_AnimationParamsMethods

Trait ITextMeshAnimation_AnimationParamsMethods 

Source
pub trait ITextMeshAnimation_AnimationParamsMethods: ITextMeshAnimation_AnimationParams {
    // Provided methods
    fn get_delay_time(self, character_count: impl Into<i32>) -> f32 { ... }
    fn calc_end_time(self) { ... }
    fn is_end(self, time: impl Into<f32>) -> bool { ... }
    fn set_wrap_mode(self, mode: impl Into<WrapMode>) { ... }
    fn expand_animation(self, ratio: impl Into<f32>) { ... }
    fn get_end_time(self) -> f32 { ... }
    fn get_animation_list(self) -> Array<AnimationCurve> { ... }
    fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_delay_time(self, character_count: impl Into<i32>) -> f32

GetDelayTime(i32) overload

Source

fn calc_end_time(self)

CalcEndTime() overload

Source

fn is_end(self, time: impl Into<f32>) -> bool

IsEnd(f32) overload

Source

fn set_wrap_mode(self, mode: impl Into<WrapMode>)

SetWrapMode(crate::unity_engine::wrapmode::WrapMode) overload

Source

fn expand_animation(self, ratio: impl Into<f32>)

ExpandAnimation(f32) overload

Source

fn get_end_time(self) -> f32

get_EndTime() overload

Source

fn get_animation_list(self) -> Array<AnimationCurve>

GetAnimationList() 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: ITextMeshAnimation_AnimationParams> ITextMeshAnimation_AnimationParamsMethods for __T

Available on crate feature app-textmeshanimation only.