Пример #1
0
        public override void OnInspectorGUI()
        {
            comboManager = comboSystem.comboManager;
            comboManagerProperty = serializedObject.FindProperty("_comboManager");

            Begin();

            ShowComboEnums();
            Separator();
            ShowComboSequences();

            End();
        }
Пример #2
0
 void InitializeManagers()
 {
     _comboManager = _comboManager ?? new ComboSequenceManager(this);
     _comboManager.Initialize(this);
 }