Add Minigame Documentation: Introduce detailed usage guides for the Container and Notes minigames, outlining features, usage scenarios, and integration with existing systems. Include example data structures and testing instructions to enhance developer understanding and facilitate future enhancements.

This commit is contained in:
Z. Cliffe Schreuders
2025-10-22 11:43:45 +01:00
parent 21a3c40026
commit f1471c7d29
13 changed files with 4218 additions and 0 deletions

25
scripts/update_tileset.sh Executable file
View File

@@ -0,0 +1,25 @@
#!/bin/bash
# Script to update Tiled map with all objects from assets directory
# This ensures all objects are included in the tileset with proper GIDs
echo "🔧 Updating Tileset with All Objects"
echo "===================================="
# Check if Python is available
if ! command -v python3 &> /dev/null; then
echo "❌ Python 3 is not installed. Please install Python 3 to run this script."
exit 1
fi
# Run the update script
python3 scripts/update_tileset.py
echo ""
echo "📝 Next Steps:"
echo "1. Open the map in Tiled Editor"
echo "2. Check that all objects are available in the tileset"
echo "3. Place any missing objects in your layers"
echo "4. Save the map"
echo ""
echo "🎯 This script ensures all objects from assets/objects/ are included in the tileset!"