Files
junisaber/src/templates/score.html

39 lines
827 B
HTML
Raw Normal View History

2018-10-15 17:18:39 -07:00
<a-mixin
id="scoreText"
mixin="textFont"
2018-10-23 02:29:43 -07:00
text="color: #88A; letterSpacing: -2; align: center"></a-mixin>
2018-10-15 17:18:39 -07:00
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-10 02:26:03 -07:00
id="scoreContainer"
2018-10-15 17:18:39 -07:00
bind__score-texts="isSongLoading: isSongLoading"
2018-10-12 18:09:04 -07:00
bind__visible="isPlaying || isPaused">
2018-10-15 17:18:39 -07:00
<a-entity id="scoreTextContainer" 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"
2018-10-15 17:18:39 -07:00
mixin="scoreText"
2018-10-02 14:00:51 -07:00
bind__text="value: score.score"
2018-10-15 17:18:39 -07:00
text="width: 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-15 17:18:39 -07:00
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="combo"
2018-10-15 17:18:39 -07:00
mixin="scoreText"
2018-10-02 14:00:51 -07:00
bind__text="value: score.combo"
2018-10-15 17:18:39 -07:00
text="width: 1"
2018-10-02 14:00:51 -07:00
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-15 17:18:39 -07:00
2018-10-03 18:58:26 -07:00
<a-entity
2018-10-02 14:00:51 -07:00
id="multiplier"
2018-10-15 17:18:39 -07:00
mixin="scoreText"
2018-10-17 03:10:37 -07:00
bind__text="value: score.multiplier + 'x'"
2018-10-15 17:18:39 -07:00
text="width: 1"
2018-10-02 14:00:51 -07:00
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>