Merge branch 'master' of https://git.txmn.tk/tuxmain/bevyjam into nixon-main
This commit is contained in:
commit
b45f052e5a
15 changed files with 173 additions and 81 deletions
78
index.html
78
index.html
|
|
@ -2,12 +2,88 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8"/>
|
||||
<title>Bevyjam</title>
|
||||
<title>Lux synthesĕ</title>
|
||||
<style type="text/css">
|
||||
@font-face {
|
||||
font-family: UacariLegacy;
|
||||
font-weight: normal;
|
||||
src: url("assets/UacariLegacy-Regular.ttf");
|
||||
}
|
||||
@font-face {
|
||||
font-family: UacariLegacy;
|
||||
font-weight: bold;
|
||||
src: url("assets/UacariLegacy-Bold.ttf");
|
||||
}
|
||||
@font-face {
|
||||
font-family: UacariLegacy-Thin;
|
||||
src: url("assets/UacariLegacy-Thin.ttf");
|
||||
}
|
||||
|
||||
html, body {
|
||||
font-family: UacariLegacy;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
background-color: #222;
|
||||
}
|
||||
body {
|
||||
display: flex;
|
||||
flex-flow: column;
|
||||
color: white;
|
||||
}
|
||||
h1, h2 {
|
||||
font-family: UacariLegacy-Thin;
|
||||
font-weight: normal;
|
||||
}
|
||||
canvas {
|
||||
order: 1;
|
||||
max-width: 100vw;
|
||||
max-height: 100vh;
|
||||
margin: auto;
|
||||
}
|
||||
#readme {
|
||||
order: 2;
|
||||
width: 640px;
|
||||
max-width: 100vw;
|
||||
padding: 8px;
|
||||
margin: auto;
|
||||
}
|
||||
a, a:visited {
|
||||
color: #f80;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<script type="module">
|
||||
<<<<<<< HEAD
|
||||
import init from './target/bevyjam.js'
|
||||
init()
|
||||
=======
|
||||
import init from './target/lux-synthese.js'
|
||||
init()
|
||||
>>>>>>> 0ee61d808ef10de7f38fe9755931893b647e0ab2
|
||||
</script>
|
||||
<div id="readme">
|
||||
<h1>Lux synthesĕ</h1>
|
||||
<p>
|
||||
<strong>Note</strong>: audio does not work in the WASM build.
|
||||
</p>
|
||||
<h2>Controls</h2>
|
||||
<ul>
|
||||
<li><strong>Move</strong>: Arrows</li>
|
||||
<li><strong>Switch</strong>: Tab</li>
|
||||
<li><strong>Level up</strong>: Enter</li>
|
||||
<li><strong>Reset</strong>: R</li>
|
||||
</ul>
|
||||
<h2>Source</h2>
|
||||
<p>
|
||||
The source code of this free software is available in our <a href="https://git.txmn.tk/tuxmain/bevyjam/">Git repository</a>.
|
||||
</p>
|
||||
<p>
|
||||
GNU AGPL v3: CopyLeft 2022 Pascal Engélibert, Nixon Cheng<br/>
|
||||
Lux synthesĕ is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, version 3 of the License.<br/>
|
||||
Lux synthesĕ is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for more details.<br/>
|
||||
You should have received a copy of the GNU Affero General Public License along with Lux synthesĕ. If not, see <a href="https://www.gnu.org/licenses/">https://www.gnu.org/licenses/</a>.
|
||||
</p>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue