Enum amethyst_animation::EndControl[][src]

pub enum EndControl {
    Loop(Option<u32>),
    Normal,
    Stay,
}

Control handling of animation/sampler end

Variants

Loop the requested number of iterations, None = loop infinitely

When duration of sampler/animation is reached, go back to rest state

When duration of sampler/animation is reached, do nothing: stay at the last sampled state

Trait Implementations

impl Debug for EndControl
[src]

Formats the value using the given formatter. Read more

impl Clone for EndControl
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Auto Trait Implementations

impl Send for EndControl

impl Sync for EndControl