選択できるのは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 = ''