void OnEnable()
    {
        BaseEnable();

        audioEventCreatorGUI = new AudioEventCreatorGUI(this);
        audioEventCreatorGUI.OnEnable();
    }
Exemple #2
0
    void OnEnable()
    {
        BaseEnable();

        if (audioEventCreatorGUI == null)
        {
            audioEventCreatorGUI = new AudioEventCreatorGUI(this);
        }
        audioEventCreatorGUI.OnEnable();
    }