diff options
author | Henrique Alves <henriquelalves@gmail.com> | 2022-07-17 15:21:20 -0300 |
---|---|---|
committer | Henrique Alves <henriquelalves@gmail.com> | 2022-07-17 15:21:20 -0300 |
commit | 7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3 (patch) | |
tree | d9b75c8b4e9d6c5b914a2362ac91271e2afd0c05 | |
parent | f1ec2f4195050d1b7620f8723522ea680828e01e (diff) | |
download | gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.gz gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.tar.bz2 gamejam-gmtk-2022-7e8d0e9f7fbd5eaf94572e184843521b1afb1eb3.zip |
exporter
-rw-r--r-- | Assets/Environment/turn-icon.ico | bin | 0 -> 16958 bytes | |||
-rw-r--r-- | export_presets.cfg | 66 | ||||
-rw-r--r-- | makefile | 16 |
3 files changed, 81 insertions, 1 deletions
diff --git a/Assets/Environment/turn-icon.ico b/Assets/Environment/turn-icon.ico Binary files differnew file mode 100644 index 0000000..8aafa62 --- /dev/null +++ b/Assets/Environment/turn-icon.ico 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 @@ -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 |