aboutsummaryrefslogtreecommitdiff
path: root/client/player
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/player
parente5f913706a2c87993bbaf793e9640cfd154db421 (diff)
downloadhurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar
hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.bz2
hurrycurry-b5bd610022dbd4348467af6c1be2135c1dc48f99.tar.zst
[skip-notice] Update license notice everywhere.
Diffstat (limited to 'client/player')
-rw-r--r--client/player/character/character.gd3
-rw-r--r--client/player/chat_bubble.gd16
-rw-r--r--client/player/controllable_player.gd13
-rw-r--r--client/player/effect.gd4
-rw-r--r--client/player/follow_camera.gd3
-rw-r--r--client/player/interact_marker.gdshader12
-rw-r--r--client/player/item_bubble.gd10
-rw-r--r--client/player/marker.gd11
-rw-r--r--client/player/mirror.gd12
-rw-r--r--client/player/onscreen_controls/controls.gd8
-rw-r--r--client/player/onscreen_controls/virtual_joystick.gd3
-rw-r--r--client/player/player.gd2
12 files changed, 58 insertions, 39 deletions
diff --git a/client/player/character/character.gd b/client/player/character/character.gd
index 710d7ac3..701603a3 100644
--- a/client/player/character/character.gd
+++ b/client/player/character/character.gd
@@ -1,5 +1,6 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# 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/player/chat_bubble.gd b/client/player/chat_bubble.gd
index 1329e198..8d6799bd 100644
--- a/client/player/chat_bubble.gd
+++ b/client/player/chat_bubble.gd
@@ -1,3 +1,19 @@
+# Hurry Curry! - a game about cooking
+# Copyright 2024 nokoe
+# 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 ChatBubble
extends MeshInstance3D
diff --git a/client/player/controllable_player.gd b/client/player/controllable_player.gd
index f4c793ae..17f6693f 100644
--- a/client/player/controllable_player.gd
+++ b/client/player/controllable_player.gd
@@ -1,19 +1,20 @@
-# Undercooked - a game about cooking
-# Copyright 2024 nokoe
+# 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
# 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 ControllablePlayer
extends Player
diff --git a/client/player/effect.gd b/client/player/effect.gd
index fedf548f..00c95441 100644
--- a/client/player/effect.gd
+++ b/client/player/effect.gd
@@ -1,6 +1,6 @@
-# Undercooked - a game about cooking
-# Copyright 2024 nokoe
+# Hurry Curry! - a game about cooking
# 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/player/follow_camera.gd b/client/player/follow_camera.gd
index db939a0b..62d3daed 100644
--- a/client/player/follow_camera.gd
+++ b/client/player/follow_camera.gd
@@ -1,5 +1,6 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
+# Copyright 2024 tpart
# Copyright 2024 metamuffin
#
# This program is free software: you can redistribute it and/or modify
diff --git a/client/player/interact_marker.gdshader b/client/player/interact_marker.gdshader
index 6ac210fa..6f3cd435 100644
--- a/client/player/interact_marker.gdshader
+++ b/client/player/interact_marker.gdshader
@@ -1,19 +1,19 @@
/*
- Undercooked - a game about cooking
- Copyright 2024 nokoe
-
+ 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/player/item_bubble.gd b/client/player/item_bubble.gd
index 6bfe60b1..b5dd7352 100644
--- a/client/player/item_bubble.gd
+++ b/client/player/item_bubble.gd
@@ -1,18 +1,18 @@
-# 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
# 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 ItemBubble
extends MeshInstance3D
diff --git a/client/player/marker.gd b/client/player/marker.gd
index 6e3e6ffa..7161c78e 100644
--- a/client/player/marker.gd
+++ b/client/player/marker.gd
@@ -1,18 +1,19 @@
-# Undercooked - a game about cooking
+# 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 Marker
extends Node3D
diff --git a/client/player/mirror.gd b/client/player/mirror.gd
index ac9dfce9..bd8c5f8b 100644
--- a/client/player/mirror.gd
+++ b/client/player/mirror.gd
@@ -1,18 +1,18 @@
-# Undercooked - a game about cooking
-# Copyright 2024 tpart
-#
+# 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/>.
-#
+#
@tool
# Hand mirror helper script, useful for animating characters
diff --git a/client/player/onscreen_controls/controls.gd b/client/player/onscreen_controls/controls.gd
index 7c235f0e..e05bf854 100644
--- a/client/player/onscreen_controls/controls.gd
+++ b/client/player/onscreen_controls/controls.gd
@@ -1,15 +1,15 @@
-# 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
# 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/>.
#
diff --git a/client/player/onscreen_controls/virtual_joystick.gd b/client/player/onscreen_controls/virtual_joystick.gd
index 83643417..5385a610 100644
--- a/client/player/onscreen_controls/virtual_joystick.gd
+++ b/client/player/onscreen_controls/virtual_joystick.gd
@@ -1,5 +1,4 @@
-# Undercooked - a game about cooking
-# Copyright 2024 Marco F
+# 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/player/player.gd b/client/player/player.gd
index 569c1b88..c52cc6e0 100644
--- a/client/player/player.gd
+++ b/client/player/player.gd
@@ -1,4 +1,4 @@
-# Undercooked - a game about cooking
+# Hurry Curry! - a game about cooking
# Copyright 2024 nokoe
# Copyright 2024 metamuffin
# Copyright 2024 tpart