mirror of
https://github.com/bevyengine/bevy
synced 2024-11-26 06:30:19 +00:00
f991c73bdf
## Objective There is no bevy example that shows how to transform a sprite. At least as its singular purpose. This creates an example of how to use transform.translate to move a sprite up and down. The last pull request had issues that I couldn't fix so I created a new one ### Solution I created move_sprite example. Co-authored-by: Carter Anderson <mcanders1@gmail.com>
41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins)
|
|
.add_startup_system(setup)
|
|
.add_system(sprite_movement)
|
|
.run();
|
|
}
|
|
|
|
#[derive(Component)]
|
|
enum Direction {
|
|
Up,
|
|
Down,
|
|
}
|
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
|
commands.spawn_bundle(OrthographicCameraBundle::new_2d());
|
|
commands
|
|
.spawn_bundle(SpriteBundle {
|
|
texture: asset_server.load("branding/icon.png"),
|
|
transform: Transform::from_xyz(100., 0., 0.),
|
|
..Default::default()
|
|
})
|
|
.insert(Direction::Up);
|
|
}
|
|
|
|
fn sprite_movement(time: Res<Time>, mut sprite_position: Query<(&mut Direction, &mut Transform)>) {
|
|
for (mut logo, mut transform) in sprite_position.iter_mut() {
|
|
match *logo {
|
|
Direction::Up => transform.translation.y += 150. * time.delta_seconds(),
|
|
Direction::Down => transform.translation.y -= 150. * time.delta_seconds(),
|
|
}
|
|
|
|
if transform.translation.y > 200. {
|
|
*logo = Direction::Down;
|
|
} else if transform.translation.y < -200. {
|
|
*logo = Direction::Up;
|
|
}
|
|
}
|
|
}
|