You are browsing as a guest. Sign up (or log in) to start making projects!

Open comments for this post

2h 32m 39s logged

Devlog #10

Worked on the final mission report screen and the share popup polish.

I improved the result screen spacing, pushed the score section lower for a cleaner layout, and added clearer stat colors so correct answers stand out in green and wrong answers in red. I also added the share popup to the main end-screen.

Copy function in the Share Pop-Up

  const shareText = getShareText();

  try {
    await navigator.clipboard.writeText(shareText);
    clearTimeout(copyButtonResetTimer);
    copyShareButton.classList.add("copied");

    copyButtonResetTimer = setTimeout(() => {
      copyShareButton.classList.remove("copied");
    }, 1200);
  } catch {}
}

Try it now

0
23

Comments 0

No comments yet. Be the first!