GameScreen ClassDelta Engine Documentation
Inheritance Hierarchy

System Object
  DeltaEngine.Content ContentData
    DeltaEngine.Scenes Scene
      FindTheWord GameScreen

Namespace: FindTheWord
Assembly: FindTheWord (in FindTheWord.exe) Version: 1.1.1.0 (1.1.1)
Syntax

public class GameScreen : Scene

The GameScreen type exposes the following members.

Constructors

  NameDescription
Public methodGameScreen
Initializes a new instance of the GameScreen class
Top
Methods

  NameDescription
Public methodAdd(Entity2D) (Inherited from Scene.)
Public methodAdd(IEnumerable Entity2D ) (Inherited from Scene.)
Public methodAddControlToScene (Inherited from Scene.)
Public methodClear (Overrides Scene Clear .)
Public methodCompleteLevel
Protected methodCreateDefault (Inherited from ContentData.)
Public methodDispose (Inherited from ContentData.)
Protected methodDisposeData (Inherited from Scene.)
Public methodFadeIn
Public methodHide
Public methodInternalCreateDefault (Inherited from ContentData.)
Protected methodLoadData (Inherited from Scene.)
Public methodLoadFromFile (Inherited from Scene.)
Public methodOnDisplayCharButtonClicked
Public methodOnSolutionCharButtonClicked
Public methodRemove (Inherited from Scene.)
Public methodSetQuadraticBackground(String) (Inherited from Scene.)
Public methodSetQuadraticBackground(Material) (Inherited from Scene.)
Public methodSetViewportBackground(String) (Inherited from Scene.)
Public methodSetViewportBackground(Material) (Inherited from Scene.)
Public methodShow (Inherited from Scene.)
Public methodStartNextLevel
Public methodToBackground (Inherited from Scene.)
Public methodToForeground (Inherited from Scene.)
Public methodToString (Inherited from ContentData.)
Top
Fields

  NameDescription
Protected fieldbackground (Inherited from Scene.)
Protected fieldContentChanged (Inherited from ContentData.)
Top
Properties

  NameDescription
Protected propertyAllowCreationIfContentNotFound (Inherited from ContentData.)
Public propertyControls (Inherited from Scene.)
Public propertyDrawArea (Inherited from Scene.)
Public propertyIsDisposed (Inherited from ContentData.)
Public propertyMetaData (Inherited from ContentData.)
Public propertyName (Inherited from ContentData.)
Top
Remarks

Tests: FindTheWord.Tests.GameScreenTests
Examples

1 unit tests call FindTheWord.GameScreen
[Test, Ignore]
public void ShowScreen()
{
    Resolve<Window>().ViewportPixelSize = new Size(1280, 800);
    var screen = new GameScreen();
    screen.FadeIn();
    screen.StartNextLevel();
}
See Also