示例#1
0
 // Token: 0x0600B851 RID: 47185 RVA: 0x003AF184 File Offset: 0x003AD384
 public static void DrawBox(float x, float y, float w, float h, Color color)
 {
     CrtacBoja.DrawLine(new Vector2(x, y), new Vector2(x + w, y), color);
     CrtacBoja.DrawLine(new Vector2(x, y), new Vector2(x, y + h), color);
     CrtacBoja.DrawLine(new Vector2(x + w, y), new Vector2(x + w, y + h), color);
     CrtacBoja.DrawLine(new Vector2(x, y + h), new Vector2(x + w, y + h), color);
 }
示例#2
0
 // Token: 0x0600B84F RID: 47183 RVA: 0x00114EA7 File Offset: 0x001130A7
 public static void DrawLine(Vector2 pointA, Vector2 pointB, float width)
 {
     CrtacBoja.DrawLine(pointA, pointB, GUI.contentColor, width);
 }
示例#3
0
 // Token: 0x0600B84E RID: 47182 RVA: 0x00114E98 File Offset: 0x00113098
 public static void DrawLine(Vector2 pointA, Vector2 pointB, Color color)
 {
     CrtacBoja.DrawLine(pointA, pointB, color, 1f);
 }
示例#4
0
 // Token: 0x0600B84D RID: 47181 RVA: 0x00114E85 File Offset: 0x00113085
 public static void DrawLine(Vector2 pointA, Vector2 pointB)
 {
     CrtacBoja.DrawLine(pointA, pointB, GUI.contentColor, 1f);
 }
示例#5
0
 // Token: 0x0600B84C RID: 47180 RVA: 0x00114E46 File Offset: 0x00113046
 public static void DrawLine(Rect rect, Color color, float width)
 {
     CrtacBoja.DrawLine(new Vector2(rect.x, rect.y), new Vector2(rect.x + rect.width, rect.y + rect.height), color, width);
 }
示例#6
0
 // Token: 0x0600B84B RID: 47179 RVA: 0x00114E38 File Offset: 0x00113038
 public static void DrawLine(Rect rect, float width)
 {
     CrtacBoja.DrawLine(rect, GUI.contentColor, width);
 }
示例#7
0
 // Token: 0x0600B84A RID: 47178 RVA: 0x00114E2A File Offset: 0x0011302A
 public static void DrawLine(Rect rect, Color color)
 {
     CrtacBoja.DrawLine(rect, color, 1f);
 }
示例#8
0
 // Token: 0x0600B849 RID: 47177 RVA: 0x00114E18 File Offset: 0x00113018
 public static void DrawLine(Rect rect)
 {
     CrtacBoja.DrawLine(rect, GUI.contentColor, 1f);
 }