C# Class WaveEngine.Components.Transitions.CoverTransition

Transition effect where the next screenContext cover the current screenContext
Inheritance: ScreenTransition
ファイルを表示 Open project: WaveEngine/Components Class Usage Examples

Public Methods

Method Description
CoverTransition ( System.TimeSpan duration, EffectOptions effect ) : System

Initializes a new instance of the CoverTransition class.

Protected Methods

Method Description
Dispose ( bool disposing ) : void

Releases unmanaged and - optionally - managed resources.

Draw ( System.TimeSpan gameTime ) : void

Draws the specified game time.

Initialize ( ) : void

Initializes this instance.

Update ( System.TimeSpan gameTime ) : void

Updates the specified game time.

Method Details

CoverTransition() public method

Initializes a new instance of the CoverTransition class.
public CoverTransition ( System.TimeSpan duration, EffectOptions effect ) : System
duration System.TimeSpan The duration.
effect EffectOptions The effect.
return System

Dispose() protected method

Releases unmanaged and - optionally - managed resources.
protected Dispose ( bool disposing ) : void
disposing bool true to release both managed and unmanaged resources; false to release only unmanaged resources.
return void

Draw() protected method

Draws the specified game time.
protected Draw ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The game time.
return void

Initialize() protected method

Initializes this instance.
protected Initialize ( ) : void
return void

Update() protected method

Updates the specified game time.
protected Update ( System.TimeSpan gameTime ) : void
gameTime System.TimeSpan The game time.
return void