summaryrefslogtreecommitdiffstats
path: root/editor/editor_audio_buses.h
diff options
context:
space:
mode:
authorMarcelo Fernandez <marcelofg55@gmail.com>2017-08-22 18:27:17 -0300
committerMarcelo Fernandez <marcelofg55@gmail.com>2017-09-12 15:13:28 -0300
commit730d36f350274a055a612d39307b02b43dd59eb2 (patch)
tree61943817253ef32869a45ffa0717f0292076cdc8 /editor/editor_audio_buses.h
parent647a9141558e0dd618e62b0563dca3363387e897 (diff)
downloadredot-engine-730d36f350274a055a612d39307b02b43dd59eb2.tar.gz
Fixed issues with surround sound on audio server
Diffstat (limited to 'editor/editor_audio_buses.h')
-rw-r--r--editor/editor_audio_buses.h19
1 files changed, 13 insertions, 6 deletions
diff --git a/editor/editor_audio_buses.h b/editor/editor_audio_buses.h
index 2c61228bde..dba1b73295 100644
--- a/editor/editor_audio_buses.h
+++ b/editor/editor_audio_buses.h
@@ -52,16 +52,23 @@ class EditorAudioBus : public PanelContainer {
GDCLASS(EditorAudioBus, PanelContainer)
- bool prev_active;
- float peak_l;
- float peak_r;
-
Ref<Texture> disabled_vu;
LineEdit *track_name;
MenuButton *bus_options;
VSlider *slider;
- TextureProgress *vu_l;
- TextureProgress *vu_r;
+
+ int cc;
+
+ struct {
+ bool prev_active;
+
+ float peak_l;
+ float peak_r;
+
+ TextureProgress *vu_l;
+ TextureProgress *vu_r;
+ } channel[4];
+
TextureRect *scale;
OptionButton *send;