Bevy Retrograde

Crates.io Docs.rs Build Status lines of code Katharos License

( Screenshot of Bounty Bros. game made with Bevy Retrograde and Skip'n Go )

bounty bros game screenshot

Bevy Retrograde is a 2D, pixel-perfect renderer for Bevy that can target both web and desktop using OpenGL/WebGL.

Bevy Retrograde is focused on providing an easy and ergonomic way to write 2D, pixel-perfect games. Compared to the out-of-the-box Bevy setup, you do not have to work with a 3D scene to create 2D games. Sprites and their coordinates are based on pixel positions in a retro-resolution scene.

Bevy Retrograde replaces many of the out of the out-of-the-box Bevy components and Bundles that you would normally use ( SpriteBundle, Camera2DBundle, etc. ) and comes with its own Camera, Image, Sprite, etc. components and bundles. Bevy Retrograde tries to provide a focused 2D-centric experience on top of Bevy that helps take out some of the pitfalls and makes it easier to think about your game when all you need is 2D.

We want to provide a batteries-included plugin that comes with almost everything you need to make a 2D pixel game with Bevy including, collisions, sound, saving data, etc. While adding these features we will try to maintain full web compatibility, but it can’t be guaranteed that all features will be feasible to implement for web.

These extra features will be included as optional cargo features that can be disabled if not needed and, where applicable, may be packaged as separate Rust crates that can be used even if you don’t want to use the rest of Bevy Retrograde.

License

Bevy Retrograde LDtk is licensed under the Katharos License which places certain restrictions on what you are allowed to use it for. Please read and understand the terms before using Bevy Retrograde for your project.

Development Status

Bevy Retrograde is in early stages of development. The API is not stable and may change dramatically at any time. Planned possible changes include:

See also Supported Bevy Version below.

Features & Examples

Check out our examples list to see how to use each Bevy Retrograde feature:

Supported Bevy Version

Bevy Retrograde currently works on the latest Bevy release and may support Bevy master as well. Bevy Retrograde will try to follow the latest Bevy release, but if there are features introduced in Bevy master that we need, we may require Bevy master for a time until the next Bevy release.

When depending on the bevy crate, you must be sure to set default-features to false in your Cargo.toml so that the rendering types in bevy don’t conflict with the ones in bevy_retrograde.

Cargo.toml:

toml bevy = { version = "0.5", default-features = false } bevy_retrograde = "0.2.0"

Sample

Here’s a quick sample of what using Bevy Retrograde looks like:

main.rs:

```rust use bevy::prelude::; use bevy_retrograde::prelude::;

fn main() { App::build() .addplugins(RetroPlugins) .addstartup_system(setup.system()) .run(); }

struct Player;

fn setup( mut commands: Commands, assetserver: Res, ) { // Load our sprites let redradishimage = assetserver.load("redRadish.png"); let yellowradishimage = assetserver.load("yellowRadish.png"); let blueradishimage = assetserver.load("blueRadish.png");

// Spawn the camera
commands.spawn().insert_bundle(CameraBundle {
    camera: Camera {
        // Set our camera to have a fixed height and an auto-resized width
        size: CameraSize::FixedHeight(100),
        background_color: Color::new(0.2, 0.2, 0.2, 1.0),
        ..Default::default()
    },
    ..Default::default()
});

// Spawn a red radish
let red_radish = commands
    .spawn_bundle(SpriteBundle {
        image: red_radish_image,
        transform: Transform::from_xyz(0., 0., 0.),
        sprite: Sprite {
            flip_x: true,
            flip_y: false,
            ..Default::default()
        },
        ..Default::default()
    })
    // Add our player marker component so we can move it
    .insert(Player)
    .id();

// Spawn a yellow radish
let yellow_radish = commands
    .spawn_bundle(SpriteBundle {
        image: yellow_radish_image,
        transform: Transform::from_xyz(-20., 0., 0.),
        sprite: Sprite {
            // Flip the sprite upside down 🙃
            flip_y: true,
            // By setting a sprite to be non-pixel-perfect you can get smoother movement
            // for things like characters, like they did in Shovel Knight®.
            pixel_perfect: false,
            ..Default::default()
        },
        ..Default::default()
    })
    .id();

// Make the yellow radish a child of the red radish
commands.entity(red_radish).push_children(&[yellow_radish]);

// Spawn a blue radish
commands.spawn().insert_bundle(SpriteBundle {
    image: blue_radish_image,
    // Set the blue radish back a layer so that he shows up under the other two
    transform: Transform::from_xyz(-20., -20., -1.),
    sprite: Sprite {
        flip_x: true,
        flip_y: false,
        ..Default::default()
    },
    ..Default::default()
});

} ```