From 4f5cf7d425a431c148deeaed58182f7ea178bfae Mon Sep 17 00:00:00 2001 From: 33333-33333 Date: Mon, 1 Jun 2026 18:26:09 +0900 Subject: [PATCH] first commit --- README.md | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 README.md diff --git a/README.md b/README.md new file mode 100644 index 0000000..2f1b082 --- /dev/null +++ b/README.md @@ -0,0 +1,25 @@ +# Pixel Island Summoner + +Local prototype. Open `index.html` with Live Server, or run: + +```bash +python3 -m http.server 5500 +``` + +Then open `http://localhost:5500`. + +## Current controls + +- Open Pixel Studio with the large `+` button. +- Left drag on the pixel canvas: draw. +- Right drag or middle drag on the pixel canvas: pan. +- Mouse wheel on the pixel canvas: zoom. +- Use `Light` to paint light cells with the selected palette color. +- Use `Set Outline` to apply the selected palette color as a thin sprite outline. +- Click map objects to select them and show their bubble. + +## Notes + +- Data is saved in `localStorage`. +- The vote bubble is local only. +- Server-side moderation is not implemented yet; see the TODO comment in `app.js` near `voteSelected()`.