mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 15:14:50 +00:00
aefe1f0739
Co-authored-by: Mike <mike.hsu@gmail.com>
18 lines
436 B
Rust
18 lines
436 B
Rust
//! Displays a single [`Sprite`], created from an image.
|
|
|
|
use bevy::prelude::*;
|
|
|
|
fn main() {
|
|
App::new()
|
|
.add_plugins(DefaultPlugins)
|
|
.add_systems(Startup, setup)
|
|
.run();
|
|
}
|
|
|
|
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
|
|
commands.spawn(Camera2dBundle::default());
|
|
commands.spawn(SpriteBundle {
|
|
texture: asset_server.load("branding/icon.png"),
|
|
..default()
|
|
});
|
|
}
|