Ejemplo n.º 1
0
 public static void DrawBoxWithText(Vector3 center,
                                    Vector3 size,
                                    string text)
 {
     DrawBox(center, size);
     UtilsText.CreateWorldText(text, null, center, 12);
 }
Ejemplo n.º 2
0
 public static void DrawText(Vector3 center,
                             int textSize,
                             string text)
 {
     UtilsText.CreateWorldText(text, null, center, textSize);
 }