2025-08-22 11:30:34 +02:00
|
|
|
#!/bin/sh
|
2025-10-29 21:36:14 +01:00
|
|
|
dir="$(dirname $1)"
|
2025-08-22 11:30:34 +02:00
|
|
|
cd "$dir"
|
2025-10-30 09:13:46 +01:00
|
|
|
echo "[package_godot_zip.sh] zipping godot.zip"
|
2025-08-22 11:30:34 +02:00
|
|
|
|
2025-08-27 14:11:20 +02:00
|
|
|
# overwrite empty godot template project-zip with given URL
|
|
|
|
|
test -n "$GODOT_TEMPLATE_ZIP" && timeout 50 wget "$GODOT_TEMPLATE_ZIP" -O ~/template_godot.zip
|
|
|
|
|
|
|
|
|
|
cp ~/template_godot.zip package_godot.zip
|
2025-10-30 09:13:46 +01:00
|
|
|
zip .xrforge/godot.zip *.glb *.usdz *.obj
|