Initial commit

This commit is contained in:
Bad Manners 2024-03-14 00:53:46 -03:00
commit 7becdd23b6
989 changed files with 28526 additions and 0 deletions

View file

@ -0,0 +1,17 @@
class_name MusicBank
extends Node
## A container used to store & group music tracks in your scene.
## This bank's unique identifier.
@export var label: String
## The bus to use for all tracks played from this bank.[br][br]
## [b]Note:[/b] this will override the bus set in your project settings (Audio/Manager/Music/Bank)
@export var bus: String
## The underlying process mode for all tracks played from this bank.
@export var mode: Node.ProcessMode
## The collection of tracks associated with this bank.
@export var tracks: Array[MusicTrackResource]