noise.gd 154 B

12345678
  1. extends AudioStreamPlayer3D
  2. const crash_sound: Resource = preload("res://effect/crash/crash.wav")
  3. func _ready() -> void:
  4. stream = crash_sound
  5. play()