mirror of
https://github.com/thecatontheceiling/buckshotroulette-decomp.git
synced 2024-11-25 15:07:21 +00:00
10 lines
267 B
GDScript
10 lines
267 B
GDScript
class_name ShellDropManager extends Node
|
|
|
|
@export var speaker : AudioStreamPlayer2D
|
|
@export var soundArray : Array[AudioStream]
|
|
|
|
func PlayShellDropSound():
|
|
var randindex = randi_range(0, soundArray.size() - 1)
|
|
speaker.stream = soundArray[randindex]
|
|
speaker.play()
|