Skip to main content

IFlipbookMethods

Trait IFlipbookMethods 

Source
pub trait IFlipbookMethods: IFlipbook {
Show 16 methods // Provided methods fn get_pattern_index(self) -> i32 { ... } fn frac(self, val: impl Into<f32>) -> f32 { ... } fn get_uv_offset(self) -> Vector2 { ... } fn get_uv_scale(self) -> Vector2 { ... } fn set_uv_offset(self) { ... } fn set_uv_scale(self) { ... } fn get_strength(self) -> f32 { ... } fn set_strength(self) { ... } fn play(self) { ... } fn awake(self) { ... } fn on_destroy(self) { ... } fn start(self) { ... } fn update(self) { ... } fn get_pattern_rate(self) -> f32 { ... } fn get_playing(self) -> bool { ... } fn ctor(self) { ... }
}

Provided Methods§

Source

fn get_pattern_index(self) -> i32

get_PatternIndex() overload

Source

fn frac(self, val: impl Into<f32>) -> f32

Frac(f32) overload

Source

fn get_uv_offset(self) -> Vector2

GetUvOffset() overload

Source

fn get_uv_scale(self) -> Vector2

GetUvScale() overload

Source

fn set_uv_offset(self)

SetUvOffset() overload

Source

fn set_uv_scale(self)

SetUvScale() overload

Source

fn get_strength(self) -> f32

GetStrength() overload

Source

fn set_strength(self)

SetStrength() overload

Source

fn play(self)

Play() overload

Source

fn awake(self)

Awake() overload

Source

fn on_destroy(self)

OnDestroy() overload

Source

fn start(self)

Start() overload

Source

fn update(self)

Update() overload

Source

fn get_pattern_rate(self) -> f32

GetPatternRate() overload

Source

fn get_playing(self) -> bool

get_Playing() 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: IFlipbook> IFlipbookMethods for __T

Available on crate feature app-flipbook only.