|
@@ -14,14 +14,14 @@ namespace KairoEngine.SoundtrackSystem
|
|
|
{
|
|
|
public override string name => "Soundtrack Module";
|
|
|
|
|
|
- [FoldoutGroup("@name"), NonSerialized, ShowInInspector] public AudioMixerGroup audioMixerChannel;
|
|
|
+ [NonSerialized, ShowInInspector] public AudioMixerGroup audioMixerChannel;
|
|
|
|
|
|
- [FoldoutGroup("@name"), NonSerialized, ShowInInspector]
|
|
|
+ [NonSerialized, ShowInInspector]
|
|
|
public Playlist playlist;
|
|
|
|
|
|
- [FoldoutGroup("@name")] public int currentTrackIndex = 0;
|
|
|
- [FoldoutGroup("@name")] public bool playOnStart = true;
|
|
|
- [FoldoutGroup("@name")] public bool showDebug = false;
|
|
|
+ public int currentTrackIndex = 0;
|
|
|
+ public bool playOnStart = true;
|
|
|
+ public bool showDebug = false;
|
|
|
|
|
|
|
|
|
public SoundtrackModule(GameConfig config) : base(config)
|