Files
evanpelle 8a4b12c4d6 move WebGL atlases into resources/atlases/, route through assetUrl()
src/client/render/gl/assets/ held 11 atlas files (PNGs + JSON metadata)
that bypassed the asset-manifest pipeline — they were imported via
Vite's ?url query, bundled, and served same-origin instead of going
through the CDN like every other game asset. Moved them to
resources/atlases/, switched the PNG imports to assetUrl("atlases/...")
so they flow through the manifest, and updated the JSON metadata
imports to "resources/atlases/..." paths. Also dropped an orphan copy
of MissileSiloIconWhite.svg (no callers; resources/images/ already had
the canonical version).

render-settings.json stays in src/ — it's renderer tuning config
consumed at bundle time, not a URL-served asset.
2026-05-17 12:54:57 -07:00

69 lines
1.0 KiB
JSON

{
"width": 1280,
"height": 768,
"cellSize": 128,
"cols": 10,
"emojis": {
"😀": 0,
"😊": 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
}
}