aboutsummaryrefslogtreecommitdiff
path: root/client/menu
diff options
context:
space:
mode:
authormetamuffin <metamuffin@disroot.org>2024-07-08 14:59:48 +0200
committermetamuffin <metamuffin@disroot.org>2024-07-08 14:59:48 +0200
commitb5bd610022dbd4348467af6c1be2135c1dc48f99 (patch)
tree448338a29c6ae7e97653744811f480a350551f75 /client/menu
parente5f913706a2c87993bbaf793e9640cfd154db421 (diff)
downloadhurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar
hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.bz2
hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.zst
[skip-notice] Update license notice everywhere.
Diffstat (limited to 'client/menu')
-rw-r--r--client/menu/blur_mix.gdshader17
-rw-r--r--client/menu/book/book.gd15
-rw-r--r--client/menu/character.gd10
-rw-r--r--client/menu/controller_buttons/controller_button.gd2
-rw-r--r--client/menu/credits.gd13
-rw-r--r--client/menu/entry.gd3
-rw-r--r--client/menu/error.gd15
-rw-r--r--client/menu/game.gd4
-rw-r--r--client/menu/ingame.gd16
-rw-r--r--client/menu/lobby.gd2
-rw-r--r--client/menu/lobby/player.gd2
-rw-r--r--client/menu/main.gd3
-rw-r--r--client/menu/menu.gd3
-rw-r--r--client/menu/menu_background.gd3
-rw-r--r--client/menu/menu_background.gdshader10
-rw-r--r--client/menu/overlay.gd16
-rw-r--r--client/menu/scene_transition.gd11
-rw-r--r--client/menu/server_message.gd2
-rw-r--r--client/menu/settings.gd3
-rw-r--r--client/menu/settings/dropdown_setting.gd2
-rw-r--r--client/menu/settings/game_setting.gd2
-rw-r--r--client/menu/settings/range_setting.gd2
-rw-r--r--client/menu/settings/settings_menu.gd4
-rw-r--r--client/menu/settings/settings_row.gd2
-rw-r--r--client/menu/settings/text_setting.gd2
-rw-r--r--client/menu/settings/toggle_setting.gd2
-rw-r--r--client/menu/setup.gd3
27 files changed, 127 insertions, 42 deletions
diff --git a/client/menu/blur_mix.gdshader b/client/menu/blur_mix.gdshader
index 884ce795..668ef57d 100644
--- a/client/menu/blur_mix.gdshader
+++ b/client/menu/blur_mix.gdshader
@@ -1,3 +1,20 @@
+/*
+ Hurry Curry! - a game about cooking
+ Copyright 2024 tpart
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU Affero General Public License as published by
+ the Free Software Foundation, version 3 of the License only.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <https://www.gnu.org/licenses/>.
+
+*/
shader_type canvas_item;
uniform float blur_amount : hint_range(-2.0, 10.0);
diff --git a/client/menu/book/book.gd b/client/menu/book/book.gd
index 2a007a3b..5c5723c9 100644
--- a/client/menu/book/book.gd
+++ b/client/menu/book/book.gd
@@ -1,3 +1,18 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
extends Menu
func _ready():
diff --git a/client/menu/character.gd b/client/menu/character.gd
index b6999acd..b4427e13 100644
--- a/client/menu/character.gd
+++ b/client/menu/character.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
-#
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
extends Menu
@onready var character: Character = $Node3D/Character
diff --git a/client/menu/controller_buttons/controller_button.gd b/client/menu/controller_buttons/controller_button.gd
index 83cfc180..fbde9b16 100644
--- a/client/menu/controller_buttons/controller_button.gd
+++ b/client/menu/controller_buttons/controller_button.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/credits.gd b/client/menu/credits.gd
index 7c2f86ec..059c1ba3 100644
--- a/client/menu/credits.gd
+++ b/client/menu/credits.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
-# Copyright 2024 metamuffin, tpart
-#
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+# Copyright 2024 nokoe
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
extends Menu
var contributors := ["sofviic", "metamuffin", "nokoe", "tpart"]
diff --git a/client/menu/entry.gd b/client/menu/entry.gd
index aaa449be..5ca6dacb 100644
--- a/client/menu/entry.gd
+++ b/client/menu/entry.gd
@@ -1,6 +1,5 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
-# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/menu/error.gd b/client/menu/error.gd
index 84b2e56e..eabb2eb7 100644
--- a/client/menu/error.gd
+++ b/client/menu/error.gd
@@ -1,3 +1,18 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
extends Menu
func _ready():
diff --git a/client/menu/game.gd b/client/menu/game.gd
index f126b448..de496def 100644
--- a/client/menu/game.gd
+++ b/client/menu/game.gd
@@ -1,6 +1,6 @@
-# Undercooked - a game about cooking
-# Copyright 2024 metamuffin
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
+# Copyright 2024 metamuffin
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/menu/ingame.gd b/client/menu/ingame.gd
index 61984c99..659528aa 100644
--- a/client/menu/ingame.gd
+++ b/client/menu/ingame.gd
@@ -1,3 +1,19 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+# Copyright 2024 tpart
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
extends Menu
@onready var anim = $AnimationPlayer
diff --git a/client/menu/lobby.gd b/client/menu/lobby.gd
index a905e670..6e315a19 100644
--- a/client/menu/lobby.gd
+++ b/client/menu/lobby.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
# Copyright 2024 nokoe
#
diff --git a/client/menu/lobby/player.gd b/client/menu/lobby/player.gd
index c5c05eb4..ff211a23 100644
--- a/client/menu/lobby/player.gd
+++ b/client/menu/lobby/player.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/main.gd b/client/menu/main.gd
index d3f0f773..5df8f278 100644
--- a/client/menu/main.gd
+++ b/client/menu/main.gd
@@ -1,6 +1,5 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
-# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/menu/menu.gd b/client/menu/menu.gd
index b7d95651..65ffa708 100644
--- a/client/menu/menu.gd
+++ b/client/menu/menu.gd
@@ -1,5 +1,6 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
+# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/menu/menu_background.gd b/client/menu/menu_background.gd
index 4304cdbf..d800c5d7 100644
--- a/client/menu/menu_background.gd
+++ b/client/menu/menu_background.gd
@@ -1,5 +1,6 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
+# Copyright 2024 nokoe
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/menu_background.gdshader b/client/menu/menu_background.gdshader
index cea00c5b..763c7b42 100644
--- a/client/menu/menu_background.gdshader
+++ b/client/menu/menu_background.gdshader
@@ -1,19 +1,19 @@
/*
- Undercooked - a game about cooking
+ Hurry Curry! - a game about cooking
Copyright 2024 metamuffin
-
+
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
the Free Software Foundation, version 3 of the License only.
-
+
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
-
+
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-
+
*/
shader_type spatial;
diff --git a/client/menu/overlay.gd b/client/menu/overlay.gd
index 66ee8976..0bedd817 100644
--- a/client/menu/overlay.gd
+++ b/client/menu/overlay.gd
@@ -1,3 +1,19 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 metamuffin
+# Copyright 2024 nokoe
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as published by
+# the Free Software Foundation, version 3 of the License only.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+# GNU Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
class_name Overlay
extends PanelContainer
diff --git a/client/menu/scene_transition.gd b/client/menu/scene_transition.gd
index 85ba5e55..77bce326 100644
--- a/client/menu/scene_transition.gd
+++ b/client/menu/scene_transition.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
-#
+# Copyright 2024 tpart
+#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, version 3 of the License only.
-#
+#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
-#
+#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see <https://www.gnu.org/licenses/>.
-#
+#
class_name SceneTransition
extends Control
diff --git a/client/menu/server_message.gd b/client/menu/server_message.gd
index ffd7887b..9e11fa0e 100644
--- a/client/menu/server_message.gd
+++ b/client/menu/server_message.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings.gd b/client/menu/settings.gd
index c028d533..800e3c66 100644
--- a/client/menu/settings.gd
+++ b/client/menu/settings.gd
@@ -1,4 +1,5 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
+# Copyright 2024 tpart
# Copyright 2024 metamuffin
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/dropdown_setting.gd b/client/menu/settings/dropdown_setting.gd
index 47f7355b..e57fc40f 100644
--- a/client/menu/settings/dropdown_setting.gd
+++ b/client/menu/settings/dropdown_setting.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/game_setting.gd b/client/menu/settings/game_setting.gd
index 67dca232..b4febdaf 100644
--- a/client/menu/settings/game_setting.gd
+++ b/client/menu/settings/game_setting.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/range_setting.gd b/client/menu/settings/range_setting.gd
index 97229db9..dca84b5e 100644
--- a/client/menu/settings/range_setting.gd
+++ b/client/menu/settings/range_setting.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/settings_menu.gd b/client/menu/settings/settings_menu.gd
index 1ae74910..7f42fa71 100644
--- a/client/menu/settings/settings_menu.gd
+++ b/client/menu/settings/settings_menu.gd
@@ -1,5 +1,7 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
+# Copyright 2024 tpart
+# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
diff --git a/client/menu/settings/settings_row.gd b/client/menu/settings/settings_row.gd
index 8c71a8c5..bebc5c38 100644
--- a/client/menu/settings/settings_row.gd
+++ b/client/menu/settings/settings_row.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/text_setting.gd b/client/menu/settings/text_setting.gd
index c8aa49d4..faafa610 100644
--- a/client/menu/settings/text_setting.gd
+++ b/client/menu/settings/text_setting.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/settings/toggle_setting.gd b/client/menu/settings/toggle_setting.gd
index 90e42264..6d4150d4 100644
--- a/client/menu/settings/toggle_setting.gd
+++ b/client/menu/settings/toggle_setting.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/menu/setup.gd b/client/menu/setup.gd
index c3638d34..3997475c 100644
--- a/client/menu/setup.gd
+++ b/client/menu/setup.gd
@@ -1,5 +1,6 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 metamuffin
+# Copyright 2024 tpart
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by