oi, go right!

This commit is contained in:
Haze Weathers 2025-01-05 14:53:19 -05:00
parent ac0f3c8d58
commit 7b4d519791
5 changed files with 87 additions and 57 deletions

View file

@ -0,0 +1,15 @@
extends Node2D
var try_for_speccy: bool = true
onready var skippers: int = get_tree().get_nodes_in_group("speccy_skip").size()
func _physics_process(delta: float) -> void:
if try_for_speccy:
if get_tree().get_nodes_in_group("speccy_appear").empty():
try_for_speccy = false
$Speccy.appear()
elif get_tree().get_nodes_in_group("speccy_skip").size() < skippers:
try_for_speccy = false