【Godot4】AudioStreamPlayerが再生中か
概要
ChatGPT
に聞いたので結果をメモ。
https://chatgpt.com/share/671bc77b-0c10-800d-894b-8cc875ffb953
is_playing() メソッドを使う
AudioStreamPlayer
クラスには
is_playing()
メソッドがある。
このメソッドで音楽が再生中かどうかをチェックして、再生中でなければ再生する。
code:gdscript
if not $AudioStreamPlayer.is_playing():
$AudioStreamPlayer.play()
#Godot4