Files
junisaber/src/templates/gameUi.html

30 lines
794 B
HTML
Raw Normal View History

2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="gameInfo"
bind__visible="!menu.active && !!challenge.id && !challenge.isLoading">
<a-entity position="0.80 0.01 -1.3">
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="score"
bind__text="value: score.score"
mixin="textFont"
text="width: 2; color: #feffc1; letterSpacing: -2;"
2018-10-03 18:58:26 -07:00
rotation="-90 0 0">
2018-10-02 14:00:51 -07:00
</a-entity>
</a-entity>
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="combo"
bind__text="value: score.combo"
mixin="textFont"
text="width: 1; color: #feffc1; letterSpacing: -2; align: center"
position="-1.8 1.2 -4"
2018-10-03 18:58:26 -07:00
scale="5 5 5">
2018-10-02 14:00:51 -07:00
</a-entity>
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="multiplier"
bind__text="value: score.multiplier"
mixin="textFont"
text="width: 1; color: #feffc1; letterSpacing: -2; align: center"
position="1.8 1.2 -4"
2018-10-03 18:58:26 -07:00
scale="5 5 5">
2018-10-02 14:00:51 -07:00
</a-entity>
2018-07-18 20:48:45 +02:00
</a-entity>