Hello!
I am really new to Godot. However, I have searched for quite a bit but I wasn't able to help myself. so here the Question:
I have a main menu and I want to let a Label appear and disappear in a one second interval. My code:
func _ready():
$Timer_Flash_Text.start()
# Called every frame. 'delta' is the elapsed time since the previous frame.
func _process(Delta):
if $Timer_Flash_Text.wait_time > 1:
$Text_Start_Game.show()
elif $Timer_Flash_Text.wait_time > 0 && $Timer_Flash_Text.wait_time < 1:
$Text_Start_Game.hide()
I would be very happy about any help!
Best regards, Bizarre