pub trait IITweenValue_2Methods: IITweenValue_2 {
// Provided methods
fn tween_value(self, float_percentage: impl Into<f32>) { ... }
fn get_ignore_time_scale(self) -> bool { ... }
fn get_duration(self) -> f32 { ... }
fn valid_target(self) -> bool { ... }
}Provided Methods§
Sourcefn tween_value(self, float_percentage: impl Into<f32>)
fn tween_value(self, float_percentage: impl Into<f32>)
TweenValue(f32) overload
Sourcefn get_ignore_time_scale(self) -> bool
fn get_ignore_time_scale(self) -> bool
get_ignoreTimeScale() overload
Sourcefn get_duration(self) -> f32
fn get_duration(self) -> f32
get_duration() overload
Sourcefn valid_target(self) -> bool
fn valid_target(self) -> bool
ValidTarget() 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: IITweenValue_2> IITweenValue_2Methods for __T
Available on crate feature
tm_pro-itweenvalue_2 only.