Method | Description | |
---|---|---|
AddScreen ( |
Add a UIScreen instance to this ScreenManager instance.
|
|
Draw ( ) : void |
Draws 2D scenes.
|
|
Draw3D ( ) : void |
Draws Vitaboy scenes (3D).
|
|
ReceivedTextInput ( object Sender, TextInputEventArgs TInputEArgs ) : void |
This should be called by an instance of Microsoft.XNA.Game.Window whenever it receives text input. This method will call the OnTextInput event.
|
|
ScreenManager ( GraphicsDevice Graphics, SpriteFont Fonts, InputHelper Input ) : System |
Constructs a new ScreenManager instance.
|
|
Update ( GameTime GTime ) : void |
public ReceivedTextInput ( object Sender, TextInputEventArgs TInputEArgs ) : void | ||
Sender | object | The object that invoked this event, sent by the callee of this method. |
TInputEArgs | TextInputEventArgs | A TextInputEventArgs instance, sent by the callee of this method. |
return | void |
public ScreenManager ( GraphicsDevice Graphics, SpriteFont Fonts, InputHelper Input ) : System | ||
Graphics | GraphicsDevice | |
Fonts | SpriteFont | |
Input | InputHelper | An InputHelper instance, used for updating screens. |
return | System |