C# Class geek.GameEngine.Visuals.DynamicGameText

Inheritance: GameText
Mostra file Open project: impworks/xna.geek.engine

Public Methods

Method Description
Draw ( SpriteBatch batch ) : void
DynamicGameText ( SpriteFont font, string text, float speed ) : System.Text
Reset ( ) : void

Resets the text animation to it's start.

SkipAnimation ( ) : void

Skips the animation and displays the text completely.

Update ( ) : void

Method Details

Draw() public method

public Draw ( SpriteBatch batch ) : void
batch Microsoft.Xna.Framework.Graphics.SpriteBatch
return void

DynamicGameText() public method

public DynamicGameText ( SpriteFont font, string text, float speed ) : System.Text
font Microsoft.Xna.Framework.Graphics.SpriteFont
text string
speed float
return System.Text

Reset() public method

Resets the text animation to it's start.
public Reset ( ) : void
return void

SkipAnimation() public method

Skips the animation and displays the text completely.
public SkipAnimation ( ) : void
return void

Update() public method

public Update ( ) : void
return void