export_presets.cfg 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. [preset.0]
  2. name="Web"
  3. platform="Web"
  4. runnable=true
  5. dedicated_server=false
  6. custom_features=""
  7. export_filter="all_resources"
  8. include_filter=""
  9. exclude_filter=""
  10. export_path="../GravvityExports/Web/index.html"
  11. encryption_include_filters=""
  12. encryption_exclude_filters=""
  13. encrypt_pck=false
  14. encrypt_directory=false
  15. script_encryption_key=""
  16. [preset.0.options]
  17. custom_template/debug=""
  18. custom_template/release=""
  19. variant/extensions_support=false
  20. vram_texture_compression/for_desktop=true
  21. vram_texture_compression/for_mobile=false
  22. html/export_icon=true
  23. html/custom_html_shell=""
  24. html/head_include=""
  25. html/canvas_resize_policy=2
  26. html/focus_canvas_on_start=true
  27. html/experimental_virtual_keyboard=false
  28. progressive_web_app/enabled=false
  29. progressive_web_app/offline_page=""
  30. progressive_web_app/display=1
  31. progressive_web_app/orientation=0
  32. progressive_web_app/icon_144x144=""
  33. progressive_web_app/icon_180x180=""
  34. progressive_web_app/icon_512x512=""
  35. progressive_web_app/background_color=Color(0, 0, 0, 1)
  36. [preset.1]
  37. name="Linux/X11"
  38. platform="Linux/X11"
  39. runnable=true
  40. dedicated_server=false
  41. custom_features=""
  42. export_filter="all_resources"
  43. include_filter=""
  44. exclude_filter=""
  45. export_path="../GravvityExports/gravvity-linux.x86_64"
  46. encryption_include_filters=""
  47. encryption_exclude_filters=""
  48. encrypt_pck=false
  49. encrypt_directory=false
  50. script_encryption_key=""
  51. [preset.1.options]
  52. custom_template/debug=""
  53. custom_template/release=""
  54. debug/export_console_script=1
  55. binary_format/embed_pck=false
  56. texture_format/bptc=true
  57. texture_format/s3tc=true
  58. texture_format/etc=false
  59. texture_format/etc2=false
  60. binary_format/architecture="x86_64"
  61. ssh_remote_deploy/enabled=false
  62. ssh_remote_deploy/host="user@host_ip"
  63. ssh_remote_deploy/port="22"
  64. ssh_remote_deploy/extra_args_ssh=""
  65. ssh_remote_deploy/extra_args_scp=""
  66. ssh_remote_deploy/run_script="#!/usr/bin/env bash
  67. export DISPLAY=:0
  68. unzip -o -q \"{temp_dir}/{archive_name}\" -d \"{temp_dir}\"
  69. \"{temp_dir}/{exe_name}\" {cmd_args}"
  70. ssh_remote_deploy/cleanup_script="#!/usr/bin/env bash
  71. kill $(pgrep -x -f \"{temp_dir}/{exe_name} {cmd_args}\")
  72. rm -rf \"{temp_dir}\""
  73. [preset.2]
  74. name="Windows Desktop"
  75. platform="Windows Desktop"
  76. runnable=true
  77. dedicated_server=false
  78. custom_features=""
  79. export_filter="all_resources"
  80. include_filter=""
  81. exclude_filter=""
  82. export_path="../GravvityExports/gravvity-windows.exe"
  83. encryption_include_filters=""
  84. encryption_exclude_filters=""
  85. encrypt_pck=false
  86. encrypt_directory=false
  87. script_encryption_key=""
  88. [preset.2.options]
  89. custom_template/debug=""
  90. custom_template/release=""
  91. debug/export_console_script=1
  92. binary_format/embed_pck=false
  93. texture_format/bptc=true
  94. texture_format/s3tc=true
  95. texture_format/etc=false
  96. texture_format/etc2=false
  97. binary_format/architecture="x86_64"
  98. codesign/enable=false
  99. codesign/identity_type=0
  100. codesign/identity=""
  101. codesign/password=""
  102. codesign/timestamp=true
  103. codesign/timestamp_server_url=""
  104. codesign/digest_algorithm=1
  105. codesign/description=""
  106. codesign/custom_options=PackedStringArray()
  107. application/modify_resources=true
  108. application/icon=""
  109. application/console_wrapper_icon=""
  110. application/icon_interpolation=4
  111. application/file_version=""
  112. application/product_version=""
  113. application/company_name=""
  114. application/product_name=""
  115. application/file_description=""
  116. application/copyright=""
  117. application/trademarks=""
  118. ssh_remote_deploy/enabled=false
  119. ssh_remote_deploy/host="user@host_ip"
  120. ssh_remote_deploy/port="22"
  121. ssh_remote_deploy/extra_args_ssh=""
  122. ssh_remote_deploy/extra_args_scp=""
  123. ssh_remote_deploy/run_script="Expand-Archive -LiteralPath '{temp_dir}\\{archive_name}' -DestinationPath '{temp_dir}'
  124. $action = New-ScheduledTaskAction -Execute '{temp_dir}\\{exe_name}' -Argument '{cmd_args}'
  125. $trigger = New-ScheduledTaskTrigger -Once -At 00:00
  126. $settings = New-ScheduledTaskSettingsSet
  127. $task = New-ScheduledTask -Action $action -Trigger $trigger -Settings $settings
  128. Register-ScheduledTask godot_remote_debug -InputObject $task -Force:$true
  129. Start-ScheduledTask -TaskName godot_remote_debug
  130. while (Get-ScheduledTask -TaskName godot_remote_debug | ? State -eq running) { Start-Sleep -Milliseconds 100 }
  131. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue"
  132. ssh_remote_deploy/cleanup_script="Stop-ScheduledTask -TaskName godot_remote_debug -ErrorAction:SilentlyContinue
  133. Unregister-ScheduledTask -TaskName godot_remote_debug -Confirm:$false -ErrorAction:SilentlyContinue
  134. Remove-Item -Recurse -Force '{temp_dir}'"