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);
        }