diff options
-rwxr-xr-x | deploy.sh | 12 | ||||
-rw-r--r-- | main.tscn | 8 | ||||
-rw-r--r-- | project.godot | 1 |
3 files changed, 21 insertions, 0 deletions
diff --git a/deploy.sh b/deploy.sh new file mode 100755 index 0000000..916655a --- /dev/null +++ b/deploy.sh @@ -0,0 +1,12 @@ +#! /bin/bash + +readonly GODOT_4_PATH="/home/peronio/.local/bin/Godot_v4.2.1.x86_64" +readonly PROJECT_NAME="ggj-2024" + +mkdir -p ./build/ +${GODOT_4_PATH} --headless --export-release "Web" ./build/build.html +mv ./build/build.html ./build/index.html +zip -r -j build.zip ./build/* +butler push ./build.zip illusion-fisherman/${PROJECT_NAME}:html5 +rm -rf ./build/ +rm ./build.zip diff --git a/main.tscn b/main.tscn new file mode 100644 index 0000000..1c65a03 --- /dev/null +++ b/main.tscn @@ -0,0 +1,8 @@ +[gd_scene format=3 uid="uid://culqaacu08vye"] + +[node name="Main" type="Node2D"] + +[node name="ColorRect" type="ColorRect" parent="."] +offset_right = 40.0 +offset_bottom = 40.0 +color = Color(0, 1, 1, 1) diff --git a/project.godot b/project.godot index 68ee9cf..4f4ecef 100644 --- a/project.godot +++ b/project.godot @@ -10,4 +10,5 @@ config_version=5 [application] +run/main_scene="res://main.tscn" config/features=PackedStringArray("4.2") |