UnityEngine.Gizmos.DrawGUITexture C# (CSharp) Method

DrawGUITexture() public static method

public static DrawGUITexture ( Rect screenRect, Texture texture ) : void
screenRect Rect
texture Texture
return void
		public static void DrawGUITexture(Rect screenRect, Texture texture) { }
		public static void DrawGUITexture(Rect screenRect, Texture texture, Material mat) { }

Same methods

Gizmos::DrawGUITexture ( Rect screenRect, Texture texture, Material mat ) : void
Gizmos::DrawGUITexture ( Rect screenRect, Texture texture, int leftBorder, int rightBorder, int topBorder, int bottomBorder ) : void
Gizmos::DrawGUITexture ( Rect screenRect, Texture texture, int leftBorder, int rightBorder, int topBorder, int bottomBorder, Material mat ) : void

Usage Example

Example #1
0
        public static void DrawGUITexture(Rect screenRect, Texture texture)
        {
            Material mat = null;

            Gizmos.DrawGUITexture(screenRect, texture, mat);
        }
All Usage Examples Of UnityEngine.Gizmos::DrawGUITexture