35 lines
1 KiB
GDScript
35 lines
1 KiB
GDScript
tool
|
|
extends HBoxContainer
|
|
|
|
var editor_reference
|
|
var editorPopup
|
|
|
|
|
|
# This is the information of this event and it will get parsed and saved to the JSON file.
|
|
var event_data = {
|
|
'event_name':'AudioEvent',
|
|
'audio': 'stop',
|
|
'file': '',
|
|
'audio_bus':'Master',
|
|
'volume':0
|
|
}
|
|
|
|
|
|
func _ready():
|
|
$PanelContainer/VBoxContainer/Header/VisibleToggle.set_visible(true)
|
|
$PanelContainer/VBoxContainer/Settings/AudioPicker.editor_reference = editor_reference
|
|
$PanelContainer/VBoxContainer/Settings/AudioPicker.connect('audio_changed', self, 'update_audio_data')
|
|
|
|
func load_data(data):
|
|
event_data = data
|
|
$PanelContainer/VBoxContainer/Settings/AudioPicker.load_data(data)
|
|
|
|
func update_audio_data(file, playing, audio_bus, volume):
|
|
event_data['file'] = file
|
|
event_data['audio'] = playing
|
|
event_data['audio_bus'] = audio_bus
|
|
event_data['volume'] = volume
|
|
if file:
|
|
$PanelContainer/VBoxContainer/Header/Preview.text = 'Plays '+file.get_file()
|
|
else:
|
|
$PanelContainer/VBoxContainer/Header/Preview.text = 'Stops previous audio event'
|