diff options
author | nokoe <nokoe@mailbox.org> | 2024-07-03 15:19:57 +0200 |
---|---|---|
committer | nokoe <nokoe@mailbox.org> | 2024-07-03 15:19:57 +0200 |
commit | c4ba88dd91c7e3ab8593542a7088b3b866a74300 (patch) | |
tree | 9b093158a86ba5acc166d038302249974911c983 /client/map/items/pot.gd | |
parent | 11d2b799739d6e4a0fa7496a74cf10bff925b6ea (diff) | |
download | hurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar hurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar.bz2 hurrycurry-c4ba88dd91c7e3ab8593542a7088b3b866a74300.tar.zst |
pot and plate sounds
Diffstat (limited to 'client/map/items/pot.gd')
-rw-r--r-- | client/map/items/pot.gd | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/client/map/items/pot.gd b/client/map/items/pot.gd index 89cbf4c4..e802b7e9 100644 --- a/client/map/items/pot.gd +++ b/client/map/items/pot.gd @@ -35,5 +35,9 @@ func finish(warn: bool): super(warn) steam.emitting = false +func setup_sounds(): + take_sound.setup([preload("res://map/items/sounds/pot_take.ogg")]) + put_sound.setup([preload("res://map/items/sounds/pot_put.ogg")]) + static func base_position() -> Vector3: return Vector3(0., 0.015, 0.) |