Initial commit
This commit is contained in:
commit
7becdd23b6
989 changed files with 28526 additions and 0 deletions
17
addons/resonate/music_manager/music_bank.gd
Normal file
17
addons/resonate/music_manager/music_bank.gd
Normal 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]
|
||||
Loading…
Add table
Add a link
Reference in a new issue