feat(assets): 디지털렌트매니저 아이콘(집+체크·스퀴클) PNG 세트 및 생성 스크립트 추가\n\n- 경로: assets/app_icon/house_check/{32..1024}.png\n- 스크립트: scripts/render_icon.py (무의존 PNG 렌더) / scripts/generate_icons.sh
Some checks failed
Flutter CI / build (push) Has been cancelled

This commit is contained in:
JiWoong Sul
2025-09-10 06:37:34 +09:00
parent 79f9aa3eb0
commit 997c2f53a0
11 changed files with 246 additions and 0 deletions

10
scripts/generate_icons.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euo pipefail
OUT_DIR="assets/app_icon/house_check"
SIZES=(1024 512 256 192 128 96 64 48 32)
mkdir -p "$OUT_DIR"
python3 scripts/render_icon.py "$OUT_DIR" "${SIZES[@]}"
echo "\n아이콘 생성 완료: $OUT_DIR"