WIP: Water animation system - added frame initialization and update loop (debugging in progress)

This commit is contained in:
2025-12-11 12:39:39 +01:00
parent 02fdc702e9
commit bad8efd33e
3 changed files with 14 additions and 2 deletions

10
test_water_animation.js Normal file
View File

@@ -0,0 +1,10 @@
// Test: Check if water frames exist
console.log('Testing water animation frames...');
// Check water_frame_0 through water_frame_3
for (let i = 0; i < 4; i++) {
const key = `water_frame_${i}`;
console.log(`Frame ${i}: ${key}`);
}
console.log('Water animation test complete!');