-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathnotes.html
More file actions
66 lines (66 loc) · 3.25 KB
/
notes.html
File metadata and controls
66 lines (66 loc) · 3.25 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="icon" type="image/png" href="/images/icon.png" />
<link rel="stylesheet" href="/src/static/css/style.css" />
<title>< notes ></title>
</head>
<body>
<div class="header">
<div class="nav-links">
<a href="/" class="header-link">main</a>
<a href="/notes.html" class="header-link">notes</a>
<a href="/game.html" class="header-link">start</a>
<button class="header-link" id="settings-button">options</button>
<a href="/guide.html" class="header-link">guide</a>
</div>
</div>
<main>
<div class="notes">
<div class="note">
<div class="note-title">Saving/loading progress</div>
<div>
The game autosaves every time you navigate to a node/finish viewing one.
<br />
<br />
On the PSX version Authorize User starts a new game, and Load Data loads an already
saved game. In lainTSX Authorize User will start a new game OR load an existing one if
it is present, only overriding the player name. I felt that this was more
intuitive.<br /><br />
You can reset your save file from the options menu in the top right corner.
</div>
</div>
<div class="note">
<div class="note-title">Performance</div>
<div>
If it's your first time playing the game, loading it might take a while. Subsequent
website visits will be much faster once the browser caches all the assets. Be aware
that gameplay already starts at the "Authorize User/Load data" screen, it's not a
loading screen.
</div>
</div>
<div class="note">
<div class="note-title">Sounds</div>
<div>
Browsers require user permission to autoplay audio. If you're not hearing any sound
effects, just click somewhere around the page.<br /><br />
We've also had an issue where the player left the game idle for 30~ mins, and the
browser's autoplay permissions reset. Again, if this happens to you, just click around
the page and it'll get fixed.
</div>
</div>
<div class="note">
<div class="note-title">Options</div>
<div>
You can change the language of the subtitles, rebind the keys, and export/import the
save file and more using the options menu by clicking the button at the top right
corner.
</div>
</div>
</div>
</main>
<script src="/scripts/modal.js"></script>
</body>
</html>