From 2cf1d6b0c3d5aed0f869453438fb4d02a014956a Mon Sep 17 00:00:00 2001 From: Josef Date: Sat, 20 Apr 2024 17:49:56 +0200 Subject: [PATCH] Added MusicType Actions --- scripts/MusicSingleton.gd | 23 +++++++++++++++++++++++ scripts/SetFastMusic.gd | 4 ++++ scripts/SetNormalMusic.gd | 4 ++++ scripts/SetSlowMusic.gd | 4 ++++ 4 files changed, 35 insertions(+) create mode 100644 scripts/SetFastMusic.gd create mode 100644 scripts/SetNormalMusic.gd create mode 100644 scripts/SetSlowMusic.gd diff --git a/scripts/MusicSingleton.gd b/scripts/MusicSingleton.gd index 1afdb3f..f153759 100644 --- a/scripts/MusicSingleton.gd +++ b/scripts/MusicSingleton.gd @@ -4,6 +4,29 @@ func _ready() -> void: print("Loaded Music singleton") var change_slow_actions : Array = [] +var gameSpeed : float = 1; +var musicType: int = 0; + +func setSlowMusic(): + setMusicType( -1 ) + +func setFastMusic(): + setMusicType( 1 ) + +func setNormalMusic(): + setMusicType( 0 ) + +func setMusicType( type:int ): + musicType = type; + + gameSpeed = 0 + + if type == 1: + gameSpeed = 2 + + if type == -1: + gameSpeed = 0.5 + func register_change_action(change_action : Node) -> void: print("Registered change action") diff --git a/scripts/SetFastMusic.gd b/scripts/SetFastMusic.gd new file mode 100644 index 0000000..c6b0800 --- /dev/null +++ b/scripts/SetFastMusic.gd @@ -0,0 +1,4 @@ +class_name SetFastMusic extends Action + +func onTrigger(): + MusicSingleton.setFastMusic() diff --git a/scripts/SetNormalMusic.gd b/scripts/SetNormalMusic.gd new file mode 100644 index 0000000..e9fe6df --- /dev/null +++ b/scripts/SetNormalMusic.gd @@ -0,0 +1,4 @@ +class_name SetNormalMusic extends Action + +func onTrigger(): + MusicSingleton.setNormalMusic() diff --git a/scripts/SetSlowMusic.gd b/scripts/SetSlowMusic.gd new file mode 100644 index 0000000..bcd68a4 --- /dev/null +++ b/scripts/SetSlowMusic.gd @@ -0,0 +1,4 @@ +class_name SetSlowMusic extends Action + +func onTrigger(): + MusicSingleton.setSlowMusic()