private void OnRefreshActions()
 {
     OTGEditorUtility.RefreshProject(m_editorConfig);
     OTGEditorUtility.PopulateListViewScriptableObject <OTGCombatAction>(ref m_actionListView, ref m_containerElement, OTGEditorUtility.ActionsInstantiated, "action-list-area");
 }
 private void OnRefreshTransitions()
 {
     OTGEditorUtility.RefreshProject(m_editorConfig);
     OTGEditorUtility.PopulateListViewScriptableObject <OTGTransitionDecision>(ref m_transitionListView, ref m_containerElement, OTGEditorUtility.TransitionsInstantiated, "transition-list-area");
 }
 private void OnProjectChange()
 {
     m_currentView.OnProjectUpdated();
     OTGEditorUtility.RefreshProject(m_editorConfig);
 }