regression-test-project/Text/RichTextLabel.gd
2021-03-27 15:53:32 +01:00

19 lines
521 B
GDScript

extends RichTextLabel
const TIME : float = 0.1
var time_to_stop : float = TIME
var current_type : int = 0
func _process(delta: float) -> void:
time_to_stop -= delta
if time_to_stop < 0:
time_to_stop = TIME
current_type += 1
current_type %= 2
if current_type == 0:
set_text("ŚWIERSZCZ NAD GŻEGŻÓŁKĄ W ŻÓŁCI, Świeci nad Źrebięciem w ciągu szeleszczącej burzy")
else:
text += "AQWAMARYNA JEST ZROBIONA Z KROMKI PO MAŚLE I NAD REDUNDANCJĄ TRZEBA ZROBIĆ DWIE ABY SIĘ NIE POŚLIZGNĄĆ"