예제 #1
0
 public Styles()
 {
     this.rowTextRight.alignment = TextAnchor.MiddleRight;
     this.recordButton.text      = "Enable";
     this.recordButton.tooltip   = "Enable Frame Debugging";
     this.prevFrame.tooltip      = "Previous event";
     this.nextFrame.tooltip      = "Next event";
     this.headerContent          = new GUIContent[FrameDebuggerWindow.Styles.s_ColumnNames.Length];
     for (int i = 0; i < this.headerContent.Length; i++)
     {
         this.headerContent[i] = EditorGUIUtility.TextContent(FrameDebuggerWindow.Styles.s_ColumnNames[i]);
     }
     this.batchBreakCauses = FrameDebuggerUtility.GetBatchBreakCauseStrings();
 }