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§
Sourcefn get_delay_time(self, character_count: impl Into<i32>) -> f32
fn get_delay_time(self, character_count: impl Into<i32>) -> f32
GetDelayTime(i32) overload
Sourcefn calc_end_time(self)
fn calc_end_time(self)
CalcEndTime() overload
Sourcefn set_wrap_mode(self, mode: impl Into<WrapMode>)
fn set_wrap_mode(self, mode: impl Into<WrapMode>)
SetWrapMode(crate::unity_engine::wrapmode::WrapMode) overload
Sourcefn expand_animation(self, ratio: impl Into<f32>)
fn expand_animation(self, ratio: impl Into<f32>)
ExpandAnimation(f32) overload
Sourcefn get_end_time(self) -> f32
fn get_end_time(self) -> f32
get_EndTime() overload
Sourcefn get_animation_list(self) -> Array<AnimationCurve>
fn get_animation_list(self) -> Array<AnimationCurve>
GetAnimationList() 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: ITextMeshAnimation_AnimationParams> ITextMeshAnimation_AnimationParamsMethods for __T
Available on crate feature
app-textmeshanimation only.