We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 46e70d7 commit 68e3d4dCopy full SHA for 68e3d4d
README.md
@@ -92,6 +92,8 @@ Licensed under either of
92
93
at your option.
94
95
+The Ducky sprite is CC-0 licensed by [Caz Creates Games](https://caz-creates-games.itch.io/ducky-2).
96
+
97
## Contribution
98
99
Unless you explicitly state otherwise, any contribution intentionally submitted
assets/ducky.png
5.36 KB
assets/icon.png
-15.3 KB
src/main.rs
@@ -16,7 +16,7 @@ fn main() {
16
fn setup(mut commands: Commands, asset_server: Res<AssetServer>) {
17
commands.spawn(Camera2dBundle::default());
18
commands.spawn(SpriteBundle {
19
- texture: asset_server.load("icon.png"),
+ texture: asset_server.load("ducky.png"),
20
..Default::default()
21
});
22
}
0 commit comments