diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 11:09:03 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 11:09:03 -0600 |
commit | 95723c0f660fbf3ad41296ae27f76a930bca2674 (patch) | |
tree | b475b771d041f66f6f91a0919f158d901183f161 /scenes/main.gd | |
parent | df074ff75646f543b634d229c3e183a991403890 (diff) |
Add ad images and start ad scene
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index 7d89108..5ad9b2e 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -15,7 +15,7 @@ func _on_microgame_spawn_timer_timeout() -> void: print("WAAAHAHAHA MICROGAMES") # Spawn a microgame window - var window_scene = preload("res://scenes/microgames/ad_window.tscn") + var window_scene = preload("res://scenes/microgames/ad/ad_window.tscn") var window_instance = window_scene.instantiate() add_child(window_instance) var microgame_scene = preload("res://scenes/microgames/window_mvp.tscn") |