您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

8 个月前
1234567891011121314151617181920
  1. extends Node
  2. @onready var l1 = $"Level 1"
  3. @onready var l1_display = $"Level 1/L1 Display"
  4. @onready var l1_text = $"Level 1/L1 Display/L1 Text"
  5. @onready var generator_timer = $GeneratorTimer
  6. # Called when the node enters the scene tree for the first time.
  7. func _ready():
  8. pass # Replace with function body.
  9. # Called every frame. 'delta' is the elapsed time since the previous frame.
  10. func _process(delta):
  11. pass
  12. func _on_interface_ready():
  13. pass # Replace with function body.