C# Class Project290.FancyFont.FancyCharacter

A fancy character that can ExPlOaD.
Show file Open project: scastle/Solitude

Public Properties

Property Type Description
Disposed bool
character char
position Vector2

Public Methods

Method Description
Draw ( ) : void

Draws this instance.

Expload ( Vector2 location ) : void

Exploads the character from the specified location.

FancyCharacter ( char character, Vector2 position, float scale, Color color, string fontName, long startupEffectTimeOffset, float layerDepth ) : System

Initializes a new instance of the FancyCharacter class.

Update ( ) : void

Updates this instance.

Method Details

Draw() public method

Draws this instance.
public Draw ( ) : void
return void

Expload() public method

Exploads the character from the specified location.
public Expload ( Vector2 location ) : void
location Vector2 The location.
return void

FancyCharacter() public method

Initializes a new instance of the FancyCharacter class.
public FancyCharacter ( char character, Vector2 position, float scale, Color color, string fontName, long startupEffectTimeOffset, float layerDepth ) : System
character char The character.
position Vector2 The position.
scale float The scale.
color Color The color.
fontName string Name of the font.
startupEffectTimeOffset long The startup effect time offset.
layerDepth float The layer depth.
return System

Update() public method

Updates this instance.
public Update ( ) : void
return void

Property Details

Disposed public property

Is this disposed and should this be removed from existance?
public bool Disposed
return bool

character public property

The character to display.
public char character
return char

position public property

The position of the character.
public Vector2 position
return Vector2