Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 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);
 }
Ejemplo n.º 7
0
 // Token: 0x0600B84A RID: 47178 RVA: 0x00114E2A File Offset: 0x0011302A
 public static void DrawLine(Rect rect, Color color)
 {
     CrtacBoja.DrawLine(rect, color, 1f);
 }
Ejemplo n.º 8
0
 // Token: 0x0600B849 RID: 47177 RVA: 0x00114E18 File Offset: 0x00113018
 public static void DrawLine(Rect rect)
 {
     CrtacBoja.DrawLine(rect, GUI.contentColor, 1f);
 }
Ejemplo n.º 9
0
 // Token: 0x0600B847 RID: 47175 RVA: 0x00114DDC File Offset: 0x00112FDC
 public static void Text(Rect rect, string content, Color txtColor)
 {
     CrtacBoja.DrawShadow(rect, new GUIContent(content), new GUIStyle(), txtColor, new Color(0f, 0f, 0f, 1f), new Vector2(1f, 1f));
 }
Ejemplo n.º 10
0
 // Token: 0x0600B846 RID: 47174 RVA: 0x00114DCE File Offset: 0x00112FCE
 public static void Text(Rect rect, string content)
 {
     CrtacBoja.Text(rect, content, Color.white);
 }