Files
junisaber/src/templates/gameUi.html
2018-07-18 20:48:45 +02:00

37 lines
1.6 KiB
HTML

<a-entity id="gameInfo"
bind__visible="isChallengeScreen"
position="0 0 -80"
scale="100 100 100">
<a-entity mixin="textFont"
text="align:right; width:1.25; value:SCORE; color:#d6d955; anchor:right; letterSpacing:-2"
position="-0.089 0.183 -1.01"
bind__visible="!challenge.isLoading"></a-entity>
<a-entity mixin="textFont"
text="width:0.9; value:STREAK; color:#f95895; letterSpacing:-2; anchor:left"
position="0.097 0.183 -1.01"
bind__visible="!challenge.isLoading"></a-entity>
<a-entity mixin="textFont"
text="width:0.7; value:MAX; color:#f95895; anchor:left; letterSpacing:-2"
position="0.101 0.1 -1.01"
bind__visible="!challenge.isLoading"></a-entity>
<a-entity id="score"
bind__text="value: score"
mixin="textFont"
text="align:right; width:2; color:#feffc1; anchor:right; letterSpacing:-2"
position="-0.08 0.132 -1"
bind__visible="!challenge.isLoading"></a-entity>
<a-entity id="streak"
bind__text="value: streak"
mixin="textFont"
text="width:1.25; color:#ffbdd6; anchor:left; letterSpacing:-2"
position="0.098 0.144 -1"
bind__visible="!challenge.isLoading"></a-entity>
<a-entity id="maxStreak"
bind__text="value: maxStreak"
mixin="textFont"
text="width:0.8; color:#ffbdd6; anchor:left; letterSpacing:-2"
position="0.1 0.074 -1"
bind__visible="!challenge.isLoading"></a-entity>
</a-entity>