Compare commits
3 Commits
4d899d3c97
...
76426094d3
| Author | SHA1 | Date | |
|---|---|---|---|
| 76426094d3 | |||
| 4b101633e7 | |||
| a5a6f32037 |
2
Cargo.lock
generated
2
Cargo.lock
generated
@@ -242,7 +242,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "asteroids"
|
name = "asteroids"
|
||||||
version = "0.6.0-dev3"
|
version = "0.6.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"bevy",
|
"bevy",
|
||||||
"bevy-inspector-egui",
|
"bevy-inspector-egui",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "asteroids"
|
name = "asteroids"
|
||||||
version = "0.6.0-dev3"
|
version = "0.6.0"
|
||||||
edition = "2024"
|
edition = "2024"
|
||||||
license = "AGPL-3.0-only"
|
license = "AGPL-3.0-only"
|
||||||
|
|
||||||
|
|||||||
@@ -180,9 +180,9 @@ fn spawn_get_ready(mut commands: Commands, mut timer: ResMut<ReadySetGoTimer>) {
|
|||||||
height: Val::Percent(30.),
|
height: Val::Percent(30.),
|
||||||
..default()
|
..default()
|
||||||
},
|
},
|
||||||
BackgroundColor(LIGHT_BLUE.into()),
|
BackgroundColor(Color::NONE),
|
||||||
children![
|
children![
|
||||||
(Text::new("Get Ready!"), TextColor(BLACK.into())),
|
(Text::new("Get Ready!"), TextColor(WHITE.into())),
|
||||||
(
|
(
|
||||||
CountdownBar,
|
CountdownBar,
|
||||||
Node {
|
Node {
|
||||||
|
|||||||
@@ -72,6 +72,11 @@
|
|||||||
<p>
|
<p>
|
||||||
A (work in progress) version of the Asteroids arcade game.
|
A (work in progress) version of the Asteroids arcade game.
|
||||||
</p>
|
</p>
|
||||||
|
<p>
|
||||||
|
<em>Sound Warning!</em> The game now has sound effects, but there are no controls on the page for changing the
|
||||||
|
volume (including to mute them). You can mute the browser tab by pressing <code>ctrl</code> + <code>m</code>.
|
||||||
|
Proper volume controls are coming soon.
|
||||||
|
</p>
|
||||||
</article>
|
</article>
|
||||||
<article>
|
<article>
|
||||||
<h3>Controls</h3>
|
<h3>Controls</h3>
|
||||||
@@ -114,7 +119,7 @@
|
|||||||
<tr>
|
<tr>
|
||||||
<td>Program Version</td>
|
<td>Program Version</td>
|
||||||
<!-- This version text is completely unchecked. I'll need to do something about that. -->
|
<!-- This version text is completely unchecked. I'll need to do something about that. -->
|
||||||
<td><code>v0.6.0-dev3</code></td>
|
<td><code>v0.6.0</code></td>
|
||||||
</tr>
|
</tr>
|
||||||
</table>
|
</table>
|
||||||
</article>
|
</article>
|
||||||
|
|||||||
Reference in New Issue
Block a user