diff --git a/export_presets.cfg b/export_presets.cfg index a41ba61..c8b4417 100644 --- a/export_presets.cfg +++ b/export_presets.cfg @@ -5,7 +5,7 @@ platform="HTML5" runnable=true custom_features="" export_filter="all_resources" -include_filter="*" +include_filter="islands/*.island" exclude_filter="" export_path="export/html/index.html" script_export_mode=1 @@ -30,7 +30,7 @@ platform="Android" runnable=true custom_features="" export_filter="all_resources" -include_filter="" +include_filter="islands/*.island" exclude_filter="" export_path="export/android/pirate_treasure_hunt.apk" script_export_mode=1 @@ -58,9 +58,9 @@ version/name="1.0" package/unique_name="org.godotengine.$genname" package/name="" package/signed=true -launcher_icons/main_192x192="" -launcher_icons/adaptive_foreground_432x432="" -launcher_icons/adaptive_background_432x432="" +launcher_icons/main_192x192="res://assets/icons/pirate_treasure_hunt_192x192.png" +launcher_icons/adaptive_foreground_432x432="res://assets/icons/pirate_treasure_hunt_432x432.png" +launcher_icons/adaptive_background_432x432="res://assets/icons/pirate_treasure_hunt_432x432.png" graphics/32_bits_framebuffer=true graphics/opengl_debug=false xr_features/xr_mode=0 @@ -230,7 +230,7 @@ platform="Linux/X11" runnable=true custom_features="" export_filter="all_resources" -include_filter="*" +include_filter="islands/*.island" exclude_filter="" export_path="export/linux/PirateTreasureRun.x86_64" script_export_mode=1 diff --git a/scenes/World.gd b/scenes/World.gd index 71eb27c..8f40d8e 100644 --- a/scenes/World.gd +++ b/scenes/World.gd @@ -53,6 +53,8 @@ var birdy_spring_v = Vector2.ZERO var birdy_spring_xt = Vector2.ONE var birdy_duration = 4.0 +signal treasure_found + # # Godot Functions # diff --git a/upload_builds.sh b/upload_builds.sh new file mode 100755 index 0000000..a75e984 --- /dev/null +++ b/upload_builds.sh @@ -0,0 +1,3 @@ +#!/bin/bash + +rsync -e ssh -a --progress --delete ./export/ martin@i13s.de:public_html/treasurehunt/