diff options
author | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 11:47:54 -0600 |
---|---|---|
committer | Zoey Kitt <zoey.kitt@outlook.com> | 2024-11-16 11:47:54 -0600 |
commit | 9eaa524fba7b110e609589c90cb27b033bdc5ecb (patch) | |
tree | 92a528abc5c128da157a7837ca34020112947c86 /scenes/main.gd | |
parent | 99f3bb77b916ac076bdfbb27a78299990290ee1e (diff) |
The ad scales yay
Diffstat (limited to 'scenes/main.gd')
-rw-r--r-- | scenes/main.gd | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/scenes/main.gd b/scenes/main.gd index 471d0c6..e9537d8 100644 --- a/scenes/main.gd +++ b/scenes/main.gd @@ -18,9 +18,6 @@ func _on_microgame_spawn_timer_timeout() -> void: 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/ad/ad.tscn") - var microgame_instance = microgame_scene.instantiate() - window_instance.add_child(microgame_instance) # Randomize window position var screen_size = DisplayServer.screen_get_size() |