1
Fork 0
mirror of https://github.com/Steffo99/looping-for-loops.git synced 2024-11-21 23:54:23 +00:00
looping-for-loops/Objects/ScrollingObjects/Buttons/GameButtonChain.gd

13 lines
297 B
GDScript

extends Node2D
class_name GameButtonChain
func _ready():
var children: Array = get_children()
for i in len(children):
if i == 0:
children[i].set_active(true)
else:
children[i].set_active(false)
if i < len(children) - 1:
children[i].connect("clicked", children[i+1], "activate")