added GAME OVER message

This commit is contained in:
Diego F. Goberna
2018-10-04 18:13:27 +02:00
parent 35f2d04a74
commit f6718595d9
2 changed files with 5 additions and 4 deletions

View File

@@ -89,7 +89,6 @@
{% include './templates/gameUi.html' %}
{% include './templates/menu.html' %}
{% include './templates/dialogs.html' %}
</a-entity>
<!-- Wrong + miss beat visual indicators. -->

View File

@@ -9,9 +9,11 @@
<a-mixin
id="dialogButtonText"
mixin="font"
position="0 -0.070 0.01"
position="0 -0.07 0.01"
text="align: center; wrapCount: 17; color: #AAA"></a-mixin>
<a-entity mixin="dialogButtonText" text="value: GAME OVER; color: #ff7171; width: 4" bind__visible="isGameOver" position="0 1.8 -2.3"></a-entity>
<a-entity id="pauseDialog" position="0 1.6 -2" bind__visible="isPaused">
<a-entity
id="resumeButton"
@@ -20,7 +22,7 @@
position="0 0.35 0"
proxy-event="event: click; to: a-scene; as: pausemenuresume"
bind__visible="!isGameOver">
<a-entity mixin="dialogButtonText" text="value: RESUME" position="0 -0.070 0.01"></a-entity>
<a-entity mixin="dialogButtonText" text="value: RESUME"></a-entity>
</a-entity>
<a-entity
@@ -35,6 +37,6 @@
mixin="dialogButton"
position="0 -0.35 0"
proxy-event="event: click; to: a-scene; as: pausemenuexit">
<a-entity mixin="dialogButtonText" text="value: EXIT TO MENU" position="0 -0.070 0.01"></a-entity>
<a-entity mixin="dialogButtonText" text="value: EXIT TO MENU"></a-entity>
</a-entity>
</a-entity>