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

14 行
219 B

  1. extends Control
  2. class_name LogPanel
  3. func _ready():
  4. $RichTextLabel.text = ""
  5. func on_new_line(text):
  6. show()
  7. $RichTextLabel.text += text + '\n'
  8. yield($TextButton, "pressed")
  9. func clear():
  10. $RichTextLabel.text = ''