aboutsummaryrefslogtreecommitdiff
path: root/game/src/SplashContainer.gd
diff options
context:
space:
mode:
author Spartan322 <Megacake1234@gmail.com>2023-06-03 20:37:10 +0200
committer Spartan322 <Megacake1234@gmail.com>2023-06-03 20:37:10 +0200
commitcef940108fe15752c3ef66f43f5169403fa2f71d (patch)
treefe4de5a05830e3bddeae78f74f729503b7cee1e9 /game/src/SplashContainer.gd
parent73e29d02e48739aba5ca5db1b9575c67e795400f (diff)
Reorganize the file structure of the files in `game/src`
Diffstat (limited to 'game/src/SplashContainer.gd')
-rw-r--r--game/src/SplashContainer.gd30
1 files changed, 0 insertions, 30 deletions
diff --git a/game/src/SplashContainer.gd b/game/src/SplashContainer.gd
deleted file mode 100644
index 524d314..0000000
--- a/game/src/SplashContainer.gd
+++ /dev/null
@@ -1,30 +0,0 @@
-extends Control
-
-signal splash_end
-
-@export var _splash_finish : TextureRect
-@export var _splash_image : TextureRect
-@export var _splash_video : VideoStreamPlayer
-
-func _process(_delta):
- var stream_texture := _splash_video.get_video_texture()
- if stream_texture != null and not stream_texture.get_image().is_invisible():
- _splash_image.hide()
- _splash_finish.show()
- set_process(false)
-
-func _input(event):
- if (event is InputEventKey\
- or event is InputEventMouse\
- or event is InputEventScreenTouch\
- or event is InputEventJoypadButton) and event.is_pressed():
- _splash_finish.hide()
- _on_splash_startup_finished()
- accept_event()
-
-func _on_splash_startup_finished():
- set_process_input(false)
- splash_end.emit()
- var tween := create_tween()
- tween.tween_property(self, "modulate:a", 0, 0.5)
- tween.tween_callback(self.queue_free)