RhythmGame/singletons/SFXPlayer.gd

39 lines
999 B
GDScript3
Raw Normal View History

2019-11-21 23:44:42 +10:30
extends Node
#const MAX_PLAYERS = 16
#var players = []
#
#func _init():
# for i in MAX_PLAYERS:
# players.append(AudioStreamPlayer.new())
#
#func play():
# pass
# https://github.com/Calinou/escape-space/blob/master/autoload/sound.gd
enum Type {
NON_POSITIONAL,
POSITIONAL_2D,
}
# Plays a sound. The AudioStreamPlayer node will be added to the `parent`
# specified as parameter.
func play(type: int, parent: Node, stream: AudioStream, volume_db: float = 0.0, pitch_scale: float = 1.0) -> void:
var audio_stream_player: Node
match type:
Type.NON_POSITIONAL:
audio_stream_player = AudioStreamPlayer.new()
Type.POSITIONAL_2D:
audio_stream_player = AudioStreamPlayer2D.new()
parent.add_child(audio_stream_player)
audio_stream_player.bus = "Effects"
audio_stream_player.stream = stream
audio_stream_player.volume_db = volume_db
audio_stream_player.pitch_scale = pitch_scale
audio_stream_player.play()
audio_stream_player.connect("finished", audio_stream_player, "queue_free")