diff options
| author | nokoe <nokoe@mailbox.org> | 2024-07-03 15:04:02 +0200 |
|---|---|---|
| committer | nokoe <nokoe@mailbox.org> | 2024-07-03 15:04:02 +0200 |
| commit | 11d2b799739d6e4a0fa7496a74cf10bff925b6ea (patch) | |
| tree | b46927ad0a7629ee7753937f267141f62983faee /client/map/items/item.gd | |
| parent | e994feebe11e4c1d8b7f3825f2e1c9bbd2069e82 (diff) | |
| download | hurrycurry-11d2b799739d6e4a0fa7496a74cf10bff925b6ea.tar hurrycurry-11d2b799739d6e4a0fa7496a74cf10bff925b6ea.tar.bz2 hurrycurry-11d2b799739d6e4a0fa7496a74cf10bff925b6ea.tar.zst | |
add progress sound
Diffstat (limited to 'client/map/items/item.gd')
| -rw-r--r-- | client/map/items/item.gd | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/map/items/item.gd b/client/map/items/item.gd index fb55b230..868af444 100644 --- a/client/map/items/item.gd +++ b/client/map/items/item.gd @@ -22,6 +22,7 @@ var base: Node3D = Node3D.new() var progress_instance: ProgressBar3D = preload("res://map/progress.tscn").instantiate() var take_sound: PlayRandom = preload("res://audio/play_random.tscn").instantiate() var put_sound: PlayRandom = preload("res://audio/play_random.tscn").instantiate() +var sound_id func _init(owned_by_: Node3D): progress_instance.position.y = 1 |