コード例 #1
0
 public static GUIStyle Border(this GUIStyle current, int left, int right, int top, int bottom, bool asCopy = true)
 {
     return(current.Border(new RectOffset(left, right, top, bottom), asCopy));
 }
コード例 #2
0
 public static GUIStyle Border(this GUIStyle current, int value, bool asCopy = true)
 {
     return(current.Border(value, value, value, value, asCopy));
 }