mirror of
https://github.com/Relintai/regression-test-project.git
synced 2025-01-12 15:21:22 +01:00
19 lines
521 B
GDScript3
19 lines
521 B
GDScript3
|
extends RichTextLabel
|
||
|
|
||
|
const TIME : float = 0.3
|
||
|
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ĄĆ"
|