Add initial web export setup.
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
7250703e3c
commit
43846c1358
|
@ -2,6 +2,7 @@
|
||||||
# Godot-specific ignores
|
# Godot-specific ignores
|
||||||
.import/
|
.import/
|
||||||
export.cfg
|
export.cfg
|
||||||
|
*.import
|
||||||
|
|
||||||
# Imported translations (automatically generated from CSV files)
|
# Imported translations (automatically generated from CSV files)
|
||||||
*.translation
|
*.translation
|
||||||
|
@ -11,5 +12,4 @@ export.cfg
|
||||||
data_*/
|
data_*/
|
||||||
|
|
||||||
.idea/
|
.idea/
|
||||||
|
web-export/
|
||||||
|
|
||||||
|
|
|
@ -1,3 +1,7 @@
|
||||||
# godot-html-js-int-demo
|
# godot-html-js-int-demo
|
||||||
|
|
||||||
Demo of integrating a Godot HTML5 exported game with its host page.
|
Demo of integrating a Godot HTML5 exported game with its host page.
|
||||||
|
|
||||||
|
## Credits
|
||||||
|
|
||||||
|
* [Skiing Art by chasergaming on OpenGameArt.org](https://opengameart.org/content/art-challenge-skiing)
|
||||||
|
|
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
Binary file not shown.
After Width: | Height: | Size: 63 KiB |
Binary file not shown.
After Width: | Height: | Size: 12 KiB |
|
@ -7,7 +7,7 @@ custom_features=""
|
||||||
export_filter="all_resources"
|
export_filter="all_resources"
|
||||||
include_filter=""
|
include_filter=""
|
||||||
exclude_filter=""
|
exclude_filter=""
|
||||||
export_path=""
|
export_path="web-export/index.html"
|
||||||
patch_list=PoolStringArray( )
|
patch_list=PoolStringArray( )
|
||||||
script_export_mode=1
|
script_export_mode=1
|
||||||
script_encryption_key=""
|
script_encryption_key=""
|
||||||
|
@ -15,7 +15,7 @@ script_encryption_key=""
|
||||||
[preset.0.options]
|
[preset.0.options]
|
||||||
|
|
||||||
vram_texture_compression/for_desktop=true
|
vram_texture_compression/for_desktop=true
|
||||||
vram_texture_compression/for_mobile=false
|
vram_texture_compression/for_mobile=true
|
||||||
html/custom_html_shell=""
|
html/custom_html_shell=""
|
||||||
html/head_include=""
|
html/head_include=""
|
||||||
custom_template/release=""
|
custom_template/release=""
|
||||||
|
|
|
@ -17,6 +17,7 @@ _global_script_class_icons={
|
||||||
|
|
||||||
config/name="html-js-demo"
|
config/name="html-js-demo"
|
||||||
config/description="Demo of integrating HTML + JS + Godot together"
|
config/description="Demo of integrating HTML + JS + Godot together"
|
||||||
|
run/main_scene="res://scenes/main/Main.tscn"
|
||||||
config/icon="res://icon.png"
|
config/icon="res://icon.png"
|
||||||
|
|
||||||
[rendering]
|
[rendering]
|
||||||
|
|
Loading…
Reference in New Issue