mirror of
https://github.com/bevyengine/bevy
synced 2024-11-25 22:20:20 +00:00
21 lines
491 B
Rust
21 lines
491 B
Rust
|
use bevy::prelude::*;
|
||
|
|
||
|
fn main() {
|
||
|
App::new()
|
||
|
.add_plugins(DefaultPlugins)
|
||
|
.add_startup_system(setup)
|
||
|
.run();
|
||
|
}
|
||
|
|
||
|
fn setup(mut commands: Commands) {
|
||
|
commands.spawn_bundle(OrthographicCameraBundle::new_2d());
|
||
|
commands.spawn_bundle(SpriteBundle {
|
||
|
sprite: Sprite {
|
||
|
color: Color::rgb(0.25, 0.25, 0.75),
|
||
|
custom_size: Some(Vec2::new(50.0, 50.0)),
|
||
|
..Default::default()
|
||
|
},
|
||
|
..Default::default()
|
||
|
});
|
||
|
}
|