diff options
Diffstat (limited to 'client/player')
-rw-r--r-- | client/player/character/character.gd | 3 | ||||
-rw-r--r-- | client/player/chat_bubble.gd | 16 | ||||
-rw-r--r-- | client/player/controllable_player.gd | 13 | ||||
-rw-r--r-- | client/player/effect.gd | 4 | ||||
-rw-r--r-- | client/player/follow_camera.gd | 3 | ||||
-rw-r--r-- | client/player/interact_marker.gdshader | 12 | ||||
-rw-r--r-- | client/player/item_bubble.gd | 10 | ||||
-rw-r--r-- | client/player/marker.gd | 11 | ||||
-rw-r--r-- | client/player/mirror.gd | 12 | ||||
-rw-r--r-- | client/player/onscreen_controls/controls.gd | 8 | ||||
-rw-r--r-- | client/player/onscreen_controls/virtual_joystick.gd | 3 | ||||
-rw-r--r-- | client/player/player.gd | 2 |
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 |