Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
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 = ''