### YamlMime:ManagedReference items: - uid: MLEM.Extended.Extensions.SpriteBatchExtensions commentId: T:MLEM.Extended.Extensions.SpriteBatchExtensions id: SpriteBatchExtensions parent: MLEM.Extended.Extensions children: - MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,Microsoft.Xna.Framework.Color) - MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color) - MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Single) - MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Color,System.Single) langs: - csharp - vb name: SpriteBatchExtensions nameWithType: SpriteBatchExtensions fullName: MLEM.Extended.Extensions.SpriteBatchExtensions type: Class source: remote: path: MLEM.Extended/Extensions/SpriteBatchExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: SpriteBatchExtensions path: ../MLEM.Extended/Extensions/SpriteBatchExtensions.cs startLine: 9 assemblies: - MLEM.Extended namespace: MLEM.Extended.Extensions summary: A set of extension methods for dealing with and in combination. example: [] syntax: content: public static class SpriteBatchExtensions content.vb: Public Module SpriteBatchExtensions inheritance: - System.Object inheritedMembers: - System.Object.Equals(System.Object) - System.Object.Equals(System.Object,System.Object) - System.Object.GetHashCode - System.Object.GetType - System.Object.MemberwiseClone - System.Object.ReferenceEquals(System.Object,System.Object) - System.Object.ToString - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Single) commentId: M:MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Single) id: Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color,System.Single,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Graphics.SpriteEffects,System.Single) isExtensionMethod: true parent: MLEM.Extended.Extensions.SpriteBatchExtensions langs: - csharp - vb name: Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color, float, Vector2, SpriteEffects, float) nameWithType: SpriteBatchExtensions.Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color, float, Vector2, SpriteEffects, float) fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Graphics.Texture2D, MonoGame.Extended.RectangleF, Microsoft.Xna.Framework.Rectangle?, Microsoft.Xna.Framework.Color, float, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Graphics.SpriteEffects, float) type: Method source: remote: path: MLEM.Extended/Extensions/SpriteBatchExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: Draw path: ../MLEM.Extended/Extensions/SpriteBatchExtensions.cs startLine: 21 assemblies: - MLEM.Extended namespace: MLEM.Extended.Extensions summary: Submit a sprite for drawing in the current batch. example: [] syntax: content: public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Rectangle? sourceRectangle, Color color, float rotation, Vector2 origin, SpriteEffects effects, float layerDepth) parameters: - id: batch type: Microsoft.Xna.Framework.Graphics.SpriteBatch description: The sprite batch to draw with. - id: texture type: Microsoft.Xna.Framework.Graphics.Texture2D description: A texture. - id: destinationRectangle type: MonoGame.Extended.RectangleF description: The drawing bounds on screen. - id: sourceRectangle type: System.Nullable{Microsoft.Xna.Framework.Rectangle} description: An optional region on the texture which will be rendered. If null - draws full texture. - id: color type: Microsoft.Xna.Framework.Color description: A color mask. - id: rotation type: System.Single description: A rotation of this sprite. - id: origin type: Microsoft.Xna.Framework.Vector2 description: Center of the rotation. 0,0 by default. - id: effects type: Microsoft.Xna.Framework.Graphics.SpriteEffects description: Modificators for drawing. Can be combined. - id: layerDepth type: System.Single description: A depth of the layer of this sprite. content.vb: Public Shared Sub Draw(batch As SpriteBatch, texture As Texture2D, destinationRectangle As RectangleF, sourceRectangle As Rectangle?, color As Color, rotation As Single, origin As Vector2, effects As SpriteEffects, layerDepth As Single) overload: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw* nameWithType.vb: SpriteBatchExtensions.Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color, Single, Vector2, SpriteEffects, Single) fullName.vb: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Graphics.Texture2D, MonoGame.Extended.RectangleF, Microsoft.Xna.Framework.Rectangle?, Microsoft.Xna.Framework.Color, Single, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Graphics.SpriteEffects, Single) name.vb: Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color, Single, Vector2, SpriteEffects, Single) - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color) commentId: M:MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color) id: Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,System.Nullable{Microsoft.Xna.Framework.Rectangle},Microsoft.Xna.Framework.Color) isExtensionMethod: true parent: MLEM.Extended.Extensions.SpriteBatchExtensions langs: - csharp - vb name: Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color) nameWithType: SpriteBatchExtensions.Draw(SpriteBatch, Texture2D, RectangleF, Rectangle?, Color) fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Graphics.Texture2D, MonoGame.Extended.RectangleF, Microsoft.Xna.Framework.Rectangle?, Microsoft.Xna.Framework.Color) type: Method source: remote: path: MLEM.Extended/Extensions/SpriteBatchExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: Draw path: ../MLEM.Extended/Extensions/SpriteBatchExtensions.cs startLine: 31 assemblies: - MLEM.Extended namespace: MLEM.Extended.Extensions summary: Submit a sprite for drawing in the current batch. example: [] syntax: content: public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Rectangle? sourceRectangle, Color color) parameters: - id: batch type: Microsoft.Xna.Framework.Graphics.SpriteBatch description: The sprite batch to draw with. - id: texture type: Microsoft.Xna.Framework.Graphics.Texture2D description: A texture. - id: destinationRectangle type: MonoGame.Extended.RectangleF description: The drawing bounds on screen. - id: sourceRectangle type: System.Nullable{Microsoft.Xna.Framework.Rectangle} description: An optional region on the texture which will be rendered. If null - draws full texture. - id: color type: Microsoft.Xna.Framework.Color description: A color mask. content.vb: Public Shared Sub Draw(batch As SpriteBatch, texture As Texture2D, destinationRectangle As RectangleF, sourceRectangle As Rectangle?, color As Color) overload: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw* - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,Microsoft.Xna.Framework.Color) commentId: M:MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,Microsoft.Xna.Framework.Color) id: Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Graphics.Texture2D,MonoGame.Extended.RectangleF,Microsoft.Xna.Framework.Color) isExtensionMethod: true parent: MLEM.Extended.Extensions.SpriteBatchExtensions langs: - csharp - vb name: Draw(SpriteBatch, Texture2D, RectangleF, Color) nameWithType: SpriteBatchExtensions.Draw(SpriteBatch, Texture2D, RectangleF, Color) fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Graphics.Texture2D, MonoGame.Extended.RectangleF, Microsoft.Xna.Framework.Color) type: Method source: remote: path: MLEM.Extended/Extensions/SpriteBatchExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: Draw path: ../MLEM.Extended/Extensions/SpriteBatchExtensions.cs startLine: 40 assemblies: - MLEM.Extended namespace: MLEM.Extended.Extensions summary: Submit a sprite for drawing in the current batch. example: [] syntax: content: public static void Draw(this SpriteBatch batch, Texture2D texture, RectangleF destinationRectangle, Color color) parameters: - id: batch type: Microsoft.Xna.Framework.Graphics.SpriteBatch description: The sprite batch to draw with. - id: texture type: Microsoft.Xna.Framework.Graphics.Texture2D description: A texture. - id: destinationRectangle type: MonoGame.Extended.RectangleF description: The drawing bounds on screen. - id: color type: Microsoft.Xna.Framework.Color description: A color mask. content.vb: Public Shared Sub Draw(batch As SpriteBatch, texture As Texture2D, destinationRectangle As RectangleF, color As Color) overload: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw* - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Color,System.Single) commentId: M:MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Color,System.Single) id: DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Point,Microsoft.Xna.Framework.Color,System.Single) isExtensionMethod: true parent: MLEM.Extended.Extensions.SpriteBatchExtensions langs: - csharp - vb name: DrawGrid(SpriteBatch, Vector2, Vector2, Point, Color, float) nameWithType: SpriteBatchExtensions.DrawGrid(SpriteBatch, Vector2, Vector2, Point, Color, float) fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Color, float) type: Method source: remote: path: MLEM.Extended/Extensions/SpriteBatchExtensions.cs branch: main repo: https://github.com/Ellpeck/MLEM id: DrawGrid path: ../MLEM.Extended/Extensions/SpriteBatchExtensions.cs startLine: 53 assemblies: - MLEM.Extended namespace: MLEM.Extended.Extensions summary: Draws a grid of tile outlines reminiscent of graph paper. example: [] syntax: content: public static void DrawGrid(this SpriteBatch batch, Vector2 start, Vector2 tileSize, Point tileCount, Color gridColor, float gridThickness = 1) parameters: - id: batch type: Microsoft.Xna.Framework.Graphics.SpriteBatch description: The sprite batch to draw with - id: start type: Microsoft.Xna.Framework.Vector2 description: The top left coordinate of the grid - id: tileSize type: Microsoft.Xna.Framework.Vector2 description: The size of each tile - id: tileCount type: Microsoft.Xna.Framework.Point description: The amount of tiles in the x and y axes - id: gridColor type: Microsoft.Xna.Framework.Color description: The color to draw the grid outlines in - id: gridThickness type: System.Single description: The thickness of each grid line. Defaults to 1. content.vb: Public Shared Sub DrawGrid(batch As SpriteBatch, start As Vector2, tileSize As Vector2, tileCount As Point, gridColor As Color, gridThickness As Single = 1) overload: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid* nameWithType.vb: SpriteBatchExtensions.DrawGrid(SpriteBatch, Vector2, Vector2, Point, Color, Single) fullName.vb: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid(Microsoft.Xna.Framework.Graphics.SpriteBatch, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Vector2, Microsoft.Xna.Framework.Point, Microsoft.Xna.Framework.Color, Single) name.vb: DrawGrid(SpriteBatch, Vector2, Vector2, Point, Color, Single) references: - uid: Microsoft.Xna.Framework.Graphics.SpriteBatch commentId: T:Microsoft.Xna.Framework.Graphics.SpriteBatch parent: Microsoft.Xna.Framework.Graphics isExternal: true name: SpriteBatch nameWithType: SpriteBatch fullName: Microsoft.Xna.Framework.Graphics.SpriteBatch - uid: MonoGame.Extended.RectangleF commentId: T:MonoGame.Extended.RectangleF parent: MonoGame.Extended isExternal: true name: RectangleF nameWithType: RectangleF fullName: MonoGame.Extended.RectangleF - uid: MLEM.Extended.Extensions commentId: N:MLEM.Extended.Extensions href: MLEM.html name: MLEM.Extended.Extensions nameWithType: MLEM.Extended.Extensions fullName: MLEM.Extended.Extensions spec.csharp: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Extended name: Extended href: MLEM.Extended.html - name: . - uid: MLEM.Extended.Extensions name: Extensions href: MLEM.Extended.Extensions.html spec.vb: - uid: MLEM name: MLEM href: MLEM.html - name: . - uid: MLEM.Extended name: Extended href: MLEM.Extended.html - name: . - uid: MLEM.Extended.Extensions name: Extensions href: MLEM.Extended.Extensions.html - uid: System.Object commentId: T:System.Object parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object name: object nameWithType: object fullName: object nameWithType.vb: Object fullName.vb: Object name.vb: Object - uid: System.Object.Equals(System.Object) commentId: M:System.Object.Equals(System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) name: Equals(object) nameWithType: object.Equals(object) fullName: object.Equals(object) nameWithType.vb: Object.Equals(Object) fullName.vb: Object.Equals(Object) name.vb: Equals(Object) spec.csharp: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.Equals(System.Object,System.Object) commentId: M:System.Object.Equals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) name: Equals(object, object) nameWithType: object.Equals(object, object) fullName: object.Equals(object, object) nameWithType.vb: Object.Equals(Object, Object) fullName.vb: Object.Equals(Object, Object) name.vb: Equals(Object, Object) spec.csharp: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.Equals(System.Object,System.Object) name: Equals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals(system-object-system-object) - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.GetHashCode commentId: M:System.Object.GetHashCode parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode name: GetHashCode() nameWithType: object.GetHashCode() fullName: object.GetHashCode() nameWithType.vb: Object.GetHashCode() fullName.vb: Object.GetHashCode() spec.csharp: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) spec.vb: - uid: System.Object.GetHashCode name: GetHashCode isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gethashcode - name: ( - name: ) - uid: System.Object.GetType commentId: M:System.Object.GetType parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype name: GetType() nameWithType: object.GetType() fullName: object.GetType() nameWithType.vb: Object.GetType() fullName.vb: Object.GetType() spec.csharp: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) spec.vb: - uid: System.Object.GetType name: GetType isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.gettype - name: ( - name: ) - uid: System.Object.MemberwiseClone commentId: M:System.Object.MemberwiseClone parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone name: MemberwiseClone() nameWithType: object.MemberwiseClone() fullName: object.MemberwiseClone() nameWithType.vb: Object.MemberwiseClone() fullName.vb: Object.MemberwiseClone() spec.csharp: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) spec.vb: - uid: System.Object.MemberwiseClone name: MemberwiseClone isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone - name: ( - name: ) - uid: System.Object.ReferenceEquals(System.Object,System.Object) commentId: M:System.Object.ReferenceEquals(System.Object,System.Object) parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals name: ReferenceEquals(object, object) nameWithType: object.ReferenceEquals(object, object) fullName: object.ReferenceEquals(object, object) nameWithType.vb: Object.ReferenceEquals(Object, Object) fullName.vb: Object.ReferenceEquals(Object, Object) name.vb: ReferenceEquals(Object, Object) spec.csharp: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) spec.vb: - uid: System.Object.ReferenceEquals(System.Object,System.Object) name: ReferenceEquals isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.referenceequals - name: ( - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ',' - name: " " - uid: System.Object name: Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object - name: ) - uid: System.Object.ToString commentId: M:System.Object.ToString parent: System.Object isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring name: ToString() nameWithType: object.ToString() fullName: object.ToString() nameWithType.vb: Object.ToString() fullName.vb: Object.ToString() spec.csharp: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) spec.vb: - uid: System.Object.ToString name: ToString isExternal: true href: https://learn.microsoft.com/dotnet/api/system.object.tostring - name: ( - name: ) - uid: Microsoft.Xna.Framework.Graphics commentId: N:Microsoft.Xna.Framework.Graphics isExternal: true name: Microsoft.Xna.Framework.Graphics nameWithType: Microsoft.Xna.Framework.Graphics fullName: Microsoft.Xna.Framework.Graphics spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - name: . - uid: Microsoft.Xna.Framework.Graphics name: Graphics isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - name: . - uid: Microsoft.Xna.Framework.Graphics name: Graphics isExternal: true - uid: MonoGame.Extended commentId: N:MonoGame.Extended isExternal: true name: MonoGame.Extended nameWithType: MonoGame.Extended fullName: MonoGame.Extended spec.csharp: - uid: MonoGame name: MonoGame isExternal: true - name: . - uid: MonoGame.Extended name: Extended isExternal: true spec.vb: - uid: MonoGame name: MonoGame isExternal: true - name: . - uid: MonoGame.Extended name: Extended isExternal: true - uid: System commentId: N:System isExternal: true href: https://learn.microsoft.com/dotnet/api/system name: System nameWithType: System fullName: System - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw* commentId: Overload:MLEM.Extended.Extensions.SpriteBatchExtensions.Draw href: MLEM.Extended.Extensions.SpriteBatchExtensions.html#MLEM_Extended_Extensions_SpriteBatchExtensions_Draw_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Graphics_Texture2D_MonoGame_Extended_RectangleF_System_Nullable_Microsoft_Xna_Framework_Rectangle__Microsoft_Xna_Framework_Color_System_Single_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Graphics_SpriteEffects_System_Single_ name: Draw nameWithType: SpriteBatchExtensions.Draw fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.Draw - uid: Microsoft.Xna.Framework.Graphics.Texture2D commentId: T:Microsoft.Xna.Framework.Graphics.Texture2D parent: Microsoft.Xna.Framework.Graphics isExternal: true name: Texture2D nameWithType: Texture2D fullName: Microsoft.Xna.Framework.Graphics.Texture2D - uid: System.Nullable{Microsoft.Xna.Framework.Rectangle} commentId: T:System.Nullable{Microsoft.Xna.Framework.Rectangle} parent: System definition: System.Nullable`1 name: Rectangle? nameWithType: Rectangle? fullName: Microsoft.Xna.Framework.Rectangle? spec.csharp: - uid: Microsoft.Xna.Framework.Rectangle name: Rectangle isExternal: true - name: '?' spec.vb: - uid: Microsoft.Xna.Framework.Rectangle name: Rectangle isExternal: true - name: '?' - uid: Microsoft.Xna.Framework.Color commentId: T:Microsoft.Xna.Framework.Color parent: Microsoft.Xna.Framework isExternal: true name: Color nameWithType: Color fullName: Microsoft.Xna.Framework.Color - uid: System.Single commentId: T:System.Single parent: System isExternal: true href: https://learn.microsoft.com/dotnet/api/system.single name: float nameWithType: float fullName: float nameWithType.vb: Single fullName.vb: Single name.vb: Single - uid: Microsoft.Xna.Framework.Vector2 commentId: T:Microsoft.Xna.Framework.Vector2 parent: Microsoft.Xna.Framework isExternal: true name: Vector2 nameWithType: Vector2 fullName: Microsoft.Xna.Framework.Vector2 - uid: Microsoft.Xna.Framework.Graphics.SpriteEffects commentId: T:Microsoft.Xna.Framework.Graphics.SpriteEffects parent: Microsoft.Xna.Framework.Graphics isExternal: true name: SpriteEffects nameWithType: SpriteEffects fullName: Microsoft.Xna.Framework.Graphics.SpriteEffects - uid: System.Nullable`1 commentId: T:System.Nullable`1 isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 name: Nullable nameWithType: Nullable fullName: System.Nullable nameWithType.vb: Nullable(Of T) fullName.vb: System.Nullable(Of T) name.vb: Nullable(Of T) spec.csharp: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: < - name: T - name: '>' spec.vb: - uid: System.Nullable`1 name: Nullable isExternal: true href: https://learn.microsoft.com/dotnet/api/system.nullable-1 - name: ( - name: Of - name: " " - name: T - name: ) - uid: Microsoft.Xna.Framework commentId: N:Microsoft.Xna.Framework isExternal: true name: Microsoft.Xna.Framework nameWithType: Microsoft.Xna.Framework fullName: Microsoft.Xna.Framework spec.csharp: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true spec.vb: - uid: Microsoft name: Microsoft isExternal: true - name: . - uid: Microsoft.Xna name: Xna isExternal: true - name: . - uid: Microsoft.Xna.Framework name: Framework isExternal: true - uid: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid* commentId: Overload:MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid href: MLEM.Extended.Extensions.SpriteBatchExtensions.html#MLEM_Extended_Extensions_SpriteBatchExtensions_DrawGrid_Microsoft_Xna_Framework_Graphics_SpriteBatch_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Vector2_Microsoft_Xna_Framework_Point_Microsoft_Xna_Framework_Color_System_Single_ name: DrawGrid nameWithType: SpriteBatchExtensions.DrawGrid fullName: MLEM.Extended.Extensions.SpriteBatchExtensions.DrawGrid - uid: Microsoft.Xna.Framework.Point commentId: T:Microsoft.Xna.Framework.Point parent: Microsoft.Xna.Framework isExternal: true name: Point nameWithType: Point fullName: Microsoft.Xna.Framework.Point