Skip to content

Commit

Permalink
Add links to Bevy and GitHub source
Browse files Browse the repository at this point in the history
  • Loading branch information
NiklasEi committed Aug 1, 2023
1 parent 8f7714c commit 09bc5bf
Show file tree
Hide file tree
Showing 7 changed files with 258 additions and 38 deletions.
103 changes: 103 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,7 @@ bevy = { version = "0.11", default-features = false, features = [
bevy_kira_audio = { version = "0.16" }
bevy_asset_loader = { version = "0.17" }
rand = { version = "0.8.3" }
webbrowser = { version = "0.8", features = ["hardened"] }

# keep the following in sync with Bevy's dependencies
winit = { version = "0.28", default-features = false }
Expand Down
Binary file added assets/textures/bevy_small.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/textures/made_with_bevy.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
6 changes: 5 additions & 1 deletion src/loading.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@ pub struct AudioAssets {

#[derive(AssetCollection, Resource)]
pub struct TextureAssets {
#[asset(path = "textures/bevy_small.png")]
pub bevy_small: Handle<Image>,
#[asset(path = "textures/bevy.png")]
pub texture_bevy: Handle<Image>,
pub bevy: Handle<Image>,
#[asset(path = "textures/made_with_bevy.png")]
pub made_with_bevy: Handle<Image>,
}
Loading

0 comments on commit 09bc5bf

Please sign in to comment.