systeme_solaire.gd 317 B

1234567891011
  1. extends Node
  2. @onready var choix_niveau: Node = find_parent("ChoixNiveau")
  3. func _ready() -> void:
  4. for child in get_children():
  5. assert(child is Planete, "Seules les planetes sont autorisees dans le systeme")
  6. var planete: Planete = child as Planete
  7. planete.niveau_choisi.connect(choix_niveau.demarrer_niveau)