GDScript Créer un nœud

# an example of how to create and add a button
var button = Button.new()
add_child(button)
StopNot