SpashScreen.gd

Splash screen object element for Splash screen manager

@export var _time: float #how many seconds splash will be shown
@export var _fade_time: float # time to fade splash

signal finished() #custom signal, emits on _finish() and splash will be deleted

func start() # start fading and show splash, then fade out and delete
func _finish()

Last updated