21 lines
726 B
Bash
Executable File
21 lines
726 B
Bash
Executable File
#!/bin/bash
|
|
# Resize Phase Pack images
|
|
|
|
echo "🔧 RESIZING PHASE PACKS..."
|
|
|
|
# DEMO: Mixed sizes
|
|
echo "📊 DEMO - Resizing..."
|
|
find godot/phases/DEMO/crops -type f -name "*.png" -exec sips -Z 256 {} \; >/dev/null 2>&1
|
|
find godot/phases/DEMO/animals -type f -name "*.png" -exec sips -Z 256 {} \; >/dev/null 2>&1
|
|
find godot/phases/DEMO/tools -type f -name "*.png" -exec sips -Z 128 {} \; >/dev/null 2>&1
|
|
|
|
# FAZA_1: Mixed content
|
|
echo "📊 FAZA_1 - Resizing..."
|
|
find godot/phases/FAZA_1 -type f -name "*.png" -exec sips -Z 256 {} \; >/dev/null 2>&1
|
|
|
|
# FAZA_2: Mixed content
|
|
echo "📊 FAZA_2 - Resizing..."
|
|
find godot/phases/FAZA_2 -type f -name "*.png" -exec sips -Z 256 {} \; >/dev/null 2>&1
|
|
|
|
echo "✅ PHASE PACKS RESIZED!"
|