Skip to content

Commit

Permalink
link to credits page, etc
Browse files Browse the repository at this point in the history
  • Loading branch information
joshuahhh committed Dec 12, 2024
1 parent 0189329 commit d0ed9b2
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 35 deletions.
35 changes: 0 additions & 35 deletions credits.html

This file was deleted.

41 changes: 41 additions & 0 deletions public/credits.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
this is DROSTE'S LAIR
<br />
<i
>➳ a programming thing by <a href="https://elliot.website/">Elliot Evans</a> +
<a href="https://joshuahhh.com/">Josh Horowitz</a></i
>
<br />
<br />
see <a href="TODO">our write-up</a> for a walkthrough, etc.
<br />
<br />
thanks for visiting!
<br />
<br />
asset sources:<br />
<a href="https://maxbittker.github.io/broider/">broider by Max Bittker</a><br />
<a href="https://www.newgrounds.com/art/view/aleha84/candle"
>candle gif by aleha84</a
>
<br />
<a href="https://freesound.org/people/szegvari/sounds/523051/">vocal effect</a>
<br />
<a href="https://freesound.org/people/Beetlemuse/sounds/564235/"
>mysterious ambient sound</a
>
<br />
<a href="https://freesound.org/people/zagi2/sounds/219167/">baroque jingle</a>
<br />
<a href="https://freesound.org/people/plasterbrain/sounds/464919/"
>positive mystical jingle</a
>
<br />
<a href="https://aerrond.com/seamless_parchment_texture_by_fantasystock2-jpg/"
>parchment texture</a
>

<br />
<a href="https://kronbits.itch.io/matriax-free-cg-textures">asfault texture</a>
<br />
<a href="https://opengameart.org/content/pointers-part-5">gauntlet cursor</a>
<br />
12 changes: 12 additions & 0 deletions src/ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,6 +196,7 @@ const hashParams = (() => {

if (hashParams["example"]) {
loadExample(hashParams["example"] as keyof typeof examples);
window.location.replace("#"); // so you won't lose your work when you go back? hmmm
} else {
const maybeFromLocalStorage = localStorage.getItem("panda-stacks");
if (maybeFromLocalStorage) {
Expand Down Expand Up @@ -2046,6 +2047,17 @@ async function main() {
tool = { type: "purging-flame" };
});

lyrAbove.do(() => {
lyrAbove.fillStyle = "rgba(0, 0, 0, 1)";
lyrAbove.textAlign = "right";
lyrAbove.textBaseline = "bottom";
lyrAbove.font = "20px serif";
lyrAbove.fillText("𓂀", c.width - 5, c.height - 5);
});
addClickHandler([c.width - 20, c.height - 20, 20, 20], () => {
window.location.href = "./credits.html";
});

(window as any).DEBUG = false;

if (draggedOver) {
Expand Down

0 comments on commit d0ed9b2

Please sign in to comment.