flame_scrolling_sprite 0.0.3 copy "flame_scrolling_sprite: ^0.0.3" to clipboard
flame_scrolling_sprite: ^0.0.3 copied to clipboard

discontinuedreplaced by: flame

Flame package adding a simple scrolling sprite to make it easy to repeat the same image over time.

Pub Build Status

Flame Scrolling Sprite #

Flame Scrolling Sprite is a Flame package to make it easy to render sprites that scrolls and repeat itself forever given a velocity.

This can be used to create things like an scrolling background, or even create scenes, bellow you can see one example of this:

train

This package can be used by using the plain class ScrollingSprite or the ScrollingSpriteComponent, they do example the same thing, but the later can be used together with Flame component system.

Bellow you can find all the parameters that the classes receives

    //// Resource path of the sprite
    @required String spritePath,

    //// X and Y coordinate do be used to map the sprite
    double spriteX = 0.0,
    double spriteY = 0.0,

    //// Width and height of the mapped sprite
    double spriteWidth,
    double spriteHeight,

    //// Destination width and height of the sprite, in case you want to scale its original size
    double spriteDestWidth,
    double spriteDestHeight,

    //// Width and height of the total area where the sprites will scroll
    double width,
    double height,

    //// Vertical and horizontal speed of the scrolling speed in pixels per second
    this.verticalSpeed = 0.0,
    this.horizontalSpeed = 0.0,

    //// Since the sprites are scrolling on an endless manner, the sprite can be draw outside of its
    //// area, by default, the package already clips the area to prevent it from showing, use this flag to change
    //// this behaviour
    this.clipToDimensions = true,

When using the ScrollingSpriteComponent the same paramenters above apply to it, and additionally, you can inform the x and y where the area will place placed.

For a live example of this running, please refer to the example folder.

7
likes
30
pub points
8%
popularity

Publisher

verified publisherflame-engine.org

Flame package adding a simple scrolling sprite to make it easy to repeat the same image over time.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flame, flutter, meta

More

Packages that depend on flame_scrolling_sprite