Initial commit
This commit is contained in:
commit
7becdd23b6
989 changed files with 28526 additions and 0 deletions
16
addons/resonate/music_manager/music_stem_resource.gd
Normal file
16
addons/resonate/music_manager/music_stem_resource.gd
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
class_name MusicStemResource
|
||||
extends Resource
|
||||
## A container used to store the details of one particular music track's stem.
|
||||
|
||||
|
||||
## This stem's unique identifier within the scope of the track it belongs to.
|
||||
@export var name: String = ""
|
||||
|
||||
## Whether this stem will start playing automatically when the track starts.
|
||||
@export var enabled: bool = false
|
||||
|
||||
## The volume of the stem.
|
||||
@export_range(-80.0, 6.0, 0.1, "suffix:dB") var volume: float = 0.0
|
||||
|
||||
## The audio stream associated with this stem.
|
||||
@export var stream: AudioStream
|
||||
Loading…
Add table
Add a link
Reference in a new issue