Skip to main content

ITextureCurve

Trait ITextureCurve 

Source
pub trait ITextureCurve: IObject {
Show 16 methods // Provided methods fn m_loop(self) -> bool { ... } fn set_m_loop(self, value: bool) { ... } fn m_zero_value(self) -> f32 { ... } fn set_m_zero_value(self, value: f32) { ... } fn m_range(self) -> f32 { ... } fn set_m_range(self, value: f32) { ... } fn m_curve(self) -> AnimationCurve { ... } fn set_m_curve(self, value: AnimationCurve) { ... } fn m_looping_curve(self) -> AnimationCurve { ... } fn set_m_looping_curve(self, value: AnimationCurve) { ... } fn m_texture(self) -> Texture2D { ... } fn set_m_texture(self, value: Texture2D) { ... } fn m_is_curve_dirty(self) -> bool { ... } fn set_m_is_curve_dirty(self, value: bool) { ... } fn m_is_texture_dirty(self) -> bool { ... } fn set_m_is_texture_dirty(self, value: bool) { ... }
}

Provided Methods§

Source

fn m_loop(self) -> bool

Source

fn set_m_loop(self, value: bool)

Source

fn m_zero_value(self) -> f32

Source

fn set_m_zero_value(self, value: f32)

Source

fn m_range(self) -> f32

Source

fn set_m_range(self, value: f32)

Source

fn m_curve(self) -> AnimationCurve

Source

fn set_m_curve(self, value: AnimationCurve)

Source

fn m_looping_curve(self) -> AnimationCurve

Source

fn set_m_looping_curve(self, value: AnimationCurve)

Source

fn m_texture(self) -> Texture2D

Source

fn set_m_texture(self, value: Texture2D)

Source

fn m_is_curve_dirty(self) -> bool

Source

fn set_m_is_curve_dirty(self, value: bool)

Source

fn m_is_texture_dirty(self) -> bool

Source

fn set_m_is_texture_dirty(self, value: bool)

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§