summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenrique Alves <henriquelalves@gmail.com>2022-07-17 15:21:20 -0300
committerHenrique Alves <henriquelalves@gmail.com>2022-07-17 15:21:20 -0300
commit7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3 (patch)
treed9b75c8b4e9d6c5b914a2362ac91271e2afd0c05
parentf1ec2f4195050d1b7620f8723522ea680828e01e (diff)
downloadgamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.gz
gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.bz2
gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.zip
exporter
-rw-r--r--Assets/Environment/turn-icon.icobin0 -> 16958 bytes
-rw-r--r--export_presets.cfg66
-rw-r--r--makefile16
3 files changed, 81 insertions, 1 deletions
diff --git a/Assets/Environment/turn-icon.ico b/Assets/Environment/turn-icon.ico
new file mode 100644
index 0000000..8aafa62
--- /dev/null
+++ b/Assets/Environment/turn-icon.ico
Binary files differ
diff --git a/export_presets.cfg b/export_presets.cfg
index 851b336..4fbb154 100644
--- a/export_presets.cfg
+++ b/export_presets.cfg
@@ -32,3 +32,69 @@ progressive_web_app/icon_144x144=""
progressive_web_app/icon_180x180=""
progressive_web_app/icon_512x512=""
progressive_web_app/background_color=Color( 0, 0, 0, 1 )
+
+[preset.1]
+
+name="WindowsDesktop"
+platform="Windows Desktop"
+runnable=true
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path=""
+script_export_mode=1
+script_encryption_key=""
+
+[preset.1.options]
+
+custom_template/debug=""
+custom_template/release=""
+binary_format/64_bits=true
+binary_format/embed_pck=false
+texture_format/bptc=false
+texture_format/s3tc=true
+texture_format/etc=false
+texture_format/etc2=false
+texture_format/no_bptc_fallbacks=true
+codesign/enable=false
+codesign/identity=""
+codesign/password=""
+codesign/timestamp=true
+codesign/timestamp_server_url=""
+codesign/digest_algorithm=1
+codesign/description=""
+codesign/custom_options=PoolStringArray( )
+application/icon="res://Assets/Environment/turn-icon.ico"
+application/file_version=""
+application/product_version=""
+application/company_name=""
+application/product_name="Dungeons and Dice"
+application/file_description="Very good game plz play"
+application/copyright=""
+application/trademarks=""
+
+[preset.2]
+
+name="LinuxX11"
+platform="Linux/X11"
+runnable=true
+custom_features=""
+export_filter="all_resources"
+include_filter=""
+exclude_filter=""
+export_path=""
+script_export_mode=1
+script_encryption_key=""
+
+[preset.2.options]
+
+custom_template/debug=""
+custom_template/release=""
+binary_format/64_bits=true
+binary_format/embed_pck=false
+texture_format/bptc=false
+texture_format/s3tc=true
+texture_format/etc=false
+texture_format/etc2=false
+texture_format/no_bptc_fallbacks=true
diff --git a/makefile b/makefile
index 5eb2d00..30a7165 100644
--- a/makefile
+++ b/makefile
@@ -4,6 +4,20 @@ deploy:
godot --export "HTML5" ./build/build.html
mv ./build/build.html ./build/index.html
zip -r -j build.zip ./build/*
- butler push ./build.zip perons/gmtk2022:html5
+ butler push ./build.zip perons/dungeonsanddice:html5
+ rm -rf ./build/
+ rm ./build.zip
+
+ mkdir -p ./build/
+ godot --export "WindowsDesktop" ./build/DungeonsAndDice.exe
+ zip -r -j build.zip ./build/*
+ butler push ./build.zip perons/dungeonsanddice:windows
+ rm -rf ./build/
+ rm ./build.zip
+
+ mkdir -p ./build/
+ godot --export "LinuxX11" ./build/DungeonsAndDice
+ zip -r -j build.zip ./build/*
+ butler push ./build.zip perons/dungeonsanddice:linux
rm -rf ./build/
rm ./build.zip