Files
millimeters-of-aluminum/.gitea/scripts/setup_editor.sh
2025-12-03 15:55:49 +01:00

12 lines
482 B
Bash

#!/bin/bash
# Config: The exact engine version this game project depends on
# You update this hash when you upgrade the engine
ENGINE_VERSION="8bf2d40"
echo "Fetching Custom Editor [${ENGINE_VERSION}]..."
# Download from your Registry
curl -O "https://gitea.212.63.210.91.nip.io/api/packages/seedlingattempt/generic/godot-editor-windows/${ENGINE_VERSION}/godot-editor-windows.zip"
unzip -o godot-editor-windows.zip
echo "Editor ready! Run ./godot.windows.editor...exe to start."