QuickAudio

by BryceDixon

24

Icon Godot_QuickAudio

Light-weight and easy-to-use interface for creating sound effects and music systems

Overview Video

Installation

From Asset Library

  1. Search "QuickAudio" in the "Asset Library" tab (at the top next to 2D, 3D, and Script) of the Godot editor.
  2. Add the plugin to your project.

Manual Download

  1. Download the code from this repository.
  2. Extract the downloaded archive to your project; resulting files should end up in res://addons/quick_audio (Files outside of that folder are not needed)
  3. Go to your Project Settings, select the

How to Use

See the full demo scripts for sound effects and music.

Quick start:

extends Node3D

@export var music: AudioStream
@export var sound: AudioStream

func _ready():
  Audio.play_sound(music)

var time := 0.0
func _process(delta):
  time += delta
  if time > 1.0:
    time -= 1.0
    Audio.play_sound_3d(sound).global_position = global_position

Version

1.0

Engine

4.2

Category

Scripts

Download

Version1.0
Download

Support

If you need help or have questions about this plugin, please contact the author.

Contact Author