Check out our latest project ✨ OpenChapter.io: free ebooks the way its meant to be 📖

QuickAudio

An asset by BryceDixon
The page banner background of a mountain and forest
QuickAudio image holder but it is empty

Quick Information

0 ratings
QuickAudio icon image
BryceDixon
QuickAudio

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

Supported Engine Version
4.2
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

README Icon Godot_QuickAudio

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

Overview Video

Installation

  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

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

Reviews

0 ratings

Your Rating

Headline must be at least 3 characters but not more than 50
Review must be at least 5 characters but not more than 500
Please sign in to add a review

Quick Information

0 ratings
QuickAudio icon image
BryceDixon
QuickAudio

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

Supported Engine Version
4.2
Version String
1.0
License Version
MIT
Support Level
community
Modified Date
1 year ago
Git URL
Issue URL

Open Source

Released under the AGPLv3 license

Plug and Play

Browse assets directly from Godot

Community Driven

Created by developers for developers