Files
junisaber/src/templates/score.html

30 lines
776 B
HTML
Raw Normal View History

2018-10-03 18:58:26 -07:00
<a-entity
2018-10-10 02:26:03 -07:00
id="scoreContainer"
2018-10-12 18:09:04 -07:00
bind__visible="isPlaying || isPaused">
2018-10-04 00:52:36 -07:00
<a-entity position="0 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"
2018-10-04 00:52:36 -07:00
text="width: 2; color: #feffc1; letterSpacing: -2; align: center"
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: multiplierText"
2018-10-02 14:00:51 -07:00
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>