Add animated plant assets and update room configurations: Introduce new animated plant images for enhanced visual effects in the game. Update room JSON and TMJ files to include these assets, ensuring proper integration with the existing room management system. Refactor player effects to trigger animations when interacting with animated plants, improving gameplay dynamics.

This commit is contained in:
Z. Cliffe Schreuders
2025-10-13 11:22:35 +01:00
parent 92d5fb268d
commit ea15e7d2c8
23 changed files with 871 additions and 299 deletions

View File

@@ -11,6 +11,18 @@ body {
#game-container {
position: relative;
width: 100vw;
height: 100vh;
overflow: hidden;
background: #333;
}
/* Canvas styling for pixel-perfect rendering */
#game-container canvas {
image-rendering: pixelated;
image-rendering: -moz-crisp-edges;
image-rendering: crisp-edges;
display: block;
}
#loading {