C# Class Protogame.Null2DRenderUtilities

Inheritance: I2DRenderUtilities
Mostra file Open project: RedpointGames/Protogame

Public Methods

Method Description
MeasureText ( IRenderContext context, string text, FontAsset font ) : Vector2
RenderCircle ( IRenderContext context, Vector2 center, int radius, Color color, bool filled = false ) : void
RenderLine ( IRenderContext context, Vector2 start, Vector2 end, Color color, float width = 1 ) : void
RenderRectangle ( IRenderContext context, Rectangle rectangle, Color color, bool filled = false ) : void
RenderText ( IRenderContext context, Vector2 position, string text, FontAsset font, HorizontalAlignment horizontalAlignment = HorizontalAlignment.Left, VerticalAlignment verticalAlignment = VerticalAlignment.Top, Color textColor = null, bool renderShadow = true, Color shadowColor = null ) : void
RenderTexture ( IRenderContext context, Vector2 position, Microsoft.Xna.Framework.Graphics.Texture2D texture, Vector2 size = null, Color color = null, float rotation, Vector2 rotationAnchor = null, bool flipHorizontally = false, bool flipVertically = false, Rectangle sourceArea = null ) : void
RenderTexture ( IRenderContext context, Vector2 position, TextureAsset texture, Vector2 size = null, Color color = null, float rotation, Vector2 rotationAnchor = null, bool flipHorizontally = false, bool flipVertically = false, Rectangle sourceArea = null ) : void
ResumeSpriteBatch ( IRenderContext renderContext ) : void
SuspendSpriteBatch ( IRenderContext renderContext ) : void

Method Details

MeasureText() public method

public MeasureText ( IRenderContext context, string text, FontAsset font ) : Vector2
context IRenderContext
text string
font FontAsset
return Vector2

RenderCircle() public method

public RenderCircle ( IRenderContext context, Vector2 center, int radius, Color color, bool filled = false ) : void
context IRenderContext
center Vector2
radius int
color Color
filled bool
return void

RenderLine() public method

public RenderLine ( IRenderContext context, Vector2 start, Vector2 end, Color color, float width = 1 ) : void
context IRenderContext
start Vector2
end Vector2
color Color
width float
return void

RenderRectangle() public method

public RenderRectangle ( IRenderContext context, Rectangle rectangle, Color color, bool filled = false ) : void
context IRenderContext
rectangle Microsoft.Xna.Framework.Rectangle
color Color
filled bool
return void

RenderText() public method

public RenderText ( IRenderContext context, Vector2 position, string text, FontAsset font, HorizontalAlignment horizontalAlignment = HorizontalAlignment.Left, VerticalAlignment verticalAlignment = VerticalAlignment.Top, Color textColor = null, bool renderShadow = true, Color shadowColor = null ) : void
context IRenderContext
position Vector2
text string
font FontAsset
horizontalAlignment HorizontalAlignment
verticalAlignment VerticalAlignment
textColor Color
renderShadow bool
shadowColor Color
return void

RenderTexture() public method

public RenderTexture ( IRenderContext context, Vector2 position, Microsoft.Xna.Framework.Graphics.Texture2D texture, Vector2 size = null, Color color = null, float rotation, Vector2 rotationAnchor = null, bool flipHorizontally = false, bool flipVertically = false, Rectangle sourceArea = null ) : void
context IRenderContext
position Vector2
texture Microsoft.Xna.Framework.Graphics.Texture2D
size Vector2
color Color
rotation float
rotationAnchor Vector2
flipHorizontally bool
flipVertically bool
sourceArea Microsoft.Xna.Framework.Rectangle
return void

RenderTexture() public method

public RenderTexture ( IRenderContext context, Vector2 position, TextureAsset texture, Vector2 size = null, Color color = null, float rotation, Vector2 rotationAnchor = null, bool flipHorizontally = false, bool flipVertically = false, Rectangle sourceArea = null ) : void
context IRenderContext
position Vector2
texture TextureAsset
size Vector2
color Color
rotation float
rotationAnchor Vector2
flipHorizontally bool
flipVertically bool
sourceArea Microsoft.Xna.Framework.Rectangle
return void

ResumeSpriteBatch() public method

public ResumeSpriteBatch ( IRenderContext renderContext ) : void
renderContext IRenderContext
return void

SuspendSpriteBatch() public method

public SuspendSpriteBatch ( IRenderContext renderContext ) : void
renderContext IRenderContext
return void