Fiiiiiiine I'll just make Clippette visible instead of instantiating her
This commit is contained in:
parent
21609e84f2
commit
518fa16866
2 changed files with 8 additions and 0 deletions
|
@ -3,6 +3,10 @@ extends Node2D
|
|||
# Called when the node enters the scene tree for the first time.
|
||||
func _ready() -> void:
|
||||
_on_microgame_spawn_timer_timeout()
|
||||
|
||||
# Spawn Clippette???
|
||||
$Clippette.visible = true
|
||||
|
||||
|
||||
# Called every frame. 'delta' is the elapsed time since the previous frame.
|
||||
func _process(delta: float) -> void:
|
||||
|
@ -17,6 +21,9 @@ func _on_microgame_spawn_timer_timeout() -> void:
|
|||
# Spawn a microgame window
|
||||
var window_scene = preload("res://scenes/microgames/ad/ad_window.tscn")
|
||||
var window_instance = window_scene.instantiate()
|
||||
|
||||
print(type_string(typeof(window_instance)))
|
||||
|
||||
add_child(window_instance)
|
||||
|
||||
# Randomize window position
|
||||
|
|
|
@ -307,6 +307,7 @@ size = Vector2i(1280, 720)
|
|||
[node name="Stock ticker" parent="Stock ticker window" instance=ExtResource("4_0ankd")]
|
||||
|
||||
[node name="Clippette" parent="." instance=ExtResource("5_6agvn")]
|
||||
visible = false
|
||||
|
||||
[node name="Score window" type="Node2D" parent="."]
|
||||
script = ExtResource("6_gvoxs")
|
||||
|
|
Loading…
Add table
Reference in a new issue