Added upload script
parent
0abe92d7fc
commit
cbc6d152d9
|
@ -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
|
||||
|
|
|
@ -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
|
||||
#
|
||||
|
|
|
@ -0,0 +1,3 @@
|
|||
#!/bin/bash
|
||||
|
||||
rsync -e ssh -a --progress --delete ./export/ martin@i13s.de:public_html/treasurehunt/
|
Loading…
Reference in New Issue