Files
junisaber/src/templates/dialogs.html

28 lines
1.2 KiB
HTML
Raw Normal View History

<a-mixin
id="dialogButton"
mixin="slice"
bind-toggle__raycastable="isPaused"
animation__mouseenter="property: components.slice9.material.color; type: color; from: #050505; to: #067197; startEvents: mouseenter; pauseEvents: mouseleave; dur: 150"
animation__mouseleave="property: components.slice9.material.color; type: color; from: #067197; to: #050505; startEvents: mouseleave; pauseEvents: mouseenter; dur: 150"
slice9="width: 1; height: 0.27; padding: 0.04"></a-mixin>
<a-mixin
id="dialogButtonText"
mixin="font"
position="0 -0.070 0.01"
text="align: center; wrapCount: 17; color: #AAA"></a-mixin>
2018-10-04 02:21:16 +02:00
<a-entity id="pauseDialog" position="0 1.6 -2" bind__visible="isPaused">
<a-entity id="continueButton" mixin="dialogButton" position="0 0.35 0">
<a-entity mixin="dialogButtonText" text="value: CONTINUE" position="0 -0.070 0.01"></a-entity>
</a-entity>
2018-10-04 00:59:47 +02:00
<a-entity id="restartButton" mixin="dialogButton">
<a-entity mixin="dialogButtonText" text="value: RESTART SONG"></a-entity>
</a-entity>
2018-10-04 00:59:47 +02:00
<a-entity id="exitButton" mixin="dialogButton" position="0 -0.35 0">
<a-entity mixin="dialogButtonText" text="value: EXIT TO MENU" position="0 -0.070 0.01"></a-entity>
</a-entity>
</a-entity>