diff options
author | tpart <tpart120@proton.me> | 2025-09-19 19:53:25 +0200 |
---|---|---|
committer | tpart <tpart120@proton.me> | 2025-09-19 19:53:25 +0200 |
commit | e2335e907c45f84462ee6fabe2828cf38e494b51 (patch) | |
tree | 1154a1e95e25e40ed3ac50d6fd36884dfdb66c0e /client/player/particles/checkmark/checkmark.gd | |
parent | 9c636b231b432976d9d7c3044f9e488f0f7cedf3 (diff) | |
download | hurrycurry-e2335e907c45f84462ee6fabe2828cf38e494b51.tar hurrycurry-e2335e907c45f84462ee6fabe2828cf38e494b51.tar.bz2 hurrycurry-e2335e907c45f84462ee6fabe2828cf38e494b51.tar.zst |
Add checkmark (Closes #392), Refactor ding sound system to make it more consistent
Diffstat (limited to 'client/player/particles/checkmark/checkmark.gd')
-rw-r--r-- | client/player/particles/checkmark/checkmark.gd | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/client/player/particles/checkmark/checkmark.gd b/client/player/particles/checkmark/checkmark.gd new file mode 100644 index 00000000..106b1cc7 --- /dev/null +++ b/client/player/particles/checkmark/checkmark.gd @@ -0,0 +1,19 @@ +# Hurry Curry! - a game about cooking +# Copyright (C) 2025 Hurry Curry! contributors +# +# 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 CPUParticles3D + +func _on_finished() -> void: + queue_free() |