📜  gdscript 创建节点 - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:52.159000             🧑  作者: Mango

代码示例1
# an example of how to create and add a button
var button = Button.new()
add_child(button)