DrawGUITexture() public static method

public static DrawGUITexture ( Rect screenRect, Texture texture ) : void
screenRect Rect
texture Texture
return void
Ejemplo n.º 1
0
        public static void DrawGUITexture(Rect screenRect, Texture texture)
        {
            Material mat = null;

            Gizmos.DrawGUITexture(screenRect, texture, mat);
        }
Ejemplo n.º 2
0
 public static void DrawGUITexture(Rect screenRect, Texture texture, [DefaultValue("null")] Material mat)
 {
     Gizmos.DrawGUITexture(screenRect, texture, 0, 0, 0, 0, mat);
 }
Ejemplo n.º 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);
        }