Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 

14 řádky
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 = ''