Trait bevy_retrograde::core::image::AnimationDecoder[]

pub trait AnimationDecoder<'a> {
    fn into_frames(self) -> Frames<'a>

Notable traits for Frames<'a>

impl<'a> Iterator for Frames<'a> type Item = Result<Frame, ImageError>;
; }
Expand description

AnimationDecoder trait

Required methods

Consume the decoder producing a series of frames.

Implementors