DrawGUITexture() публичный статический Метод

public static DrawGUITexture ( Rect screenRect, Texture texture ) : void
screenRect Rect
texture Texture
Результат void
Пример #1
0
        public static void DrawGUITexture(Rect screenRect, Texture texture)
        {
            Material mat = null;

            Gizmos.DrawGUITexture(screenRect, texture, mat);
        }
Пример #2
0
 public static void DrawGUITexture(Rect screenRect, Texture texture, [DefaultValue("null")] Material mat)
 {
     Gizmos.DrawGUITexture(screenRect, texture, 0, 0, 0, 0, mat);
 }
Пример #3
0
        public static void DrawGUITexture(Rect screenRect, Texture texture, int leftBorder, int rightBorder, int topBorder, int bottomBorder)
        {
            Material mat = null;

            Gizmos.DrawGUITexture(screenRect, texture, leftBorder, rightBorder, topBorder, bottomBorder, mat);
        }