summaryrefslogtreecommitdiff
path: root/2026/examples/example_godot/project
diff options
context:
space:
mode:
Diffstat (limited to '2026/examples/example_godot/project')
-rw-r--r--2026/examples/example_godot/project/export_presets.cfg2
-rw-r--r--2026/examples/example_godot/project/main.gd1
2 files changed, 2 insertions, 1 deletions
diff --git a/2026/examples/example_godot/project/export_presets.cfg b/2026/examples/example_godot/project/export_presets.cfg
index aaea4b7..5633989 100644
--- a/2026/examples/example_godot/project/export_presets.cfg
+++ b/2026/examples/example_godot/project/export_presets.cfg
@@ -8,7 +8,7 @@ custom_features=""
export_filter="all_resources"
include_filter=""
exclude_filter=""
-export_path="./index.html"
+export_path="../output/index.html"
patches=PackedStringArray()
patch_delta_encoding=false
patch_delta_compression_level_zstd=19
diff --git a/2026/examples/example_godot/project/main.gd b/2026/examples/example_godot/project/main.gd
index 268afbc..d117c2f 100644
--- a/2026/examples/example_godot/project/main.gd
+++ b/2026/examples/example_godot/project/main.gd
@@ -13,4 +13,5 @@ func _process(delta: float) -> void:
func _input(event) -> void:
if event is InputEventMouseButton:
+ started = false
JavaScriptBridge.eval("window.parent.postMessage({op: \"done\", win: true});")