Exemplo n.º 1
0
 private void RenderList()
 {
     EditorGUILayoutX.BeginVertical();
     treeView.OnGUILayout();
     InfamyGUI.Button("Save", saveCallback);
     EditorGUILayoutX.EndVertical();
 }
Exemplo n.º 2
0
 public override void OnGUI()
 {
     InfamyGUI.HorizontalSplitPane(state.missionPageSplitterState, RenderList, RenderDetails);
     if (treeView != null && selectedAsset != null)
     {
         treeView.UpdateDisplayName(selectedAsset);
     }
 }
Exemplo n.º 3
0
 public override void OnGUI()
 {
     InfamyGUI.HorizontalSplitPane(state.shipPageSplitterState, RenderList, RenderDetails);
 }