Skip to main content

Screen

The Screen handles all aspects of interacting with the screen for Excalibur.

Index

Constructors

constructor

Properties

publicevents

events: EventEmitter<ScreenEvents> = ...

Listen to screen events [[ScreenEvents]]

publicgraphicsContext

graphicsContext: ExcaliburGraphicsContext

Accessors

publicantialiasing

  • get antialiasing(): boolean
  • set antialiasing(isSmooth: boolean): void
  • Returns boolean

  • Parameters

    • isSmooth: boolean

    Returns void

publicaspectRatio

  • get aspectRatio(): number
  • Returns number

publiccanvas

  • get canvas(): HTMLCanvasElement
  • Returns HTMLCanvasElement

publiccanvasHeight

  • get canvasHeight(): number
  • The height of the game canvas in pixels, (physical height component of the resolution of the canvas element)


    Returns number

publiccanvasWidth

  • get canvasWidth(): number
  • The width of the game canvas in pixels (physical width component of the resolution of the canvas element)


    Returns number

publiccenter

  • Returns screen center coordinates including zoom and device pixel ratio.


    Returns Vector

publiccontentArea

  • Returns the content area in screen space where it is safe to place content


    Returns BoundingBox

publicdisplayMode

publicdrawHeight

  • get drawHeight(): number
  • Returns the height of the engine's visible drawing surface in pixels including zoom and device pixel ratio.


    Returns number

publicdrawWidth

  • get drawWidth(): number
  • Returns the width of the engine's visible drawing surface in pixels including zoom and device pixel ratio.


    Returns number

publichalfCanvasHeight

  • get halfCanvasHeight(): number
  • Returns half height of the game canvas in pixels (half physical height component)


    Returns number

publichalfCanvasWidth

  • get halfCanvasWidth(): number
  • Returns half width of the game canvas in pixels (half physical width component)


    Returns number

publichalfDrawHeight

  • get halfDrawHeight(): number
  • Returns half the height of the engine's visible drawing surface in pixels including zoom and device pixel ratio.


    Returns number

publichalfDrawWidth

  • get halfDrawWidth(): number
  • Returns half the width of the engine's visible drawing surface in pixels including zoom and device pixel ratio.


    Returns number

publicisFullScreen

  • get isFullScreen(): boolean
  • Returns true if excalibur is fullscreen using the browser fullscreen api


    Returns boolean

publicisHiDpi

  • get isHiDpi(): boolean
  • Returns boolean

publicparent

  • get parent(): HTMLElement | Window
  • Returns HTMLElement | Window

publicpixelRatio

  • get pixelRatio(): number
  • Returns the computed pixel ratio, first using any override, then the device pixel ratio


    Returns number

publicpixelRatioOverride

  • get pixelRatioOverride(): number
  • set pixelRatioOverride(value: number): void
  • Get or set the pixel ratio override

    You will need to call applyResolutionAndViewport() affect change on the screen


    Returns number

  • Parameters

    • value: number

    Returns void

publicresolution

publicscaledHeight

  • get scaledHeight(): number
  • Returns number

publicscaledWidth

  • get scaledWidth(): number
  • Returns number

publicunsafeArea

  • Returns the unsafe area in screen space, this is the full screen and some space may not be onscreen.


    Returns BoundingBox

publicviewport

Methods

publicapplyResolutionAndViewport

  • applyResolutionAndViewport(): void
  • Returns void

publicdispose

  • dispose(): void
  • Returns void

publicexitFullScreen

  • exitFullScreen(): Promise<void>
  • Requests to exit fullscreen using the browser fullscreen api


    Returns Promise<void>

publicgetScreenBounds

  • Returns a BoundingBox of the top left corner of the screen and the bottom right corner of the screen.

    Screen bounds are in screen coordinates, useful for culling objects offscreen that are in screen space


    Returns BoundingBox

publicgetWorldBounds

  • Returns a BoundingBox of the top left corner of the screen and the bottom right corner of the screen.

    World bounds are in world coordinates, useful for culling objects offscreen that are in world space


    Returns BoundingBox

publicgoFullScreen

  • goFullScreen(elementId?: string): Promise<void>
  • Requests to go fullscreen using the browser fullscreen api, requires user interaction to be successful. For example, wire this to a user click handler.

    Optionally specify a target element id to go fullscreen, by default the game canvas is used


    Parameters

    • optionalelementId: string

    Returns Promise<void>

publicpageToScreenCoordinates

  • Takes a coordinate in normal html page space, for example from a pointer move event, and translates it to Excalibur screen space.

    Excalibur screen space starts at the top left (0, 0) corner of the viewport, and extends to the bottom right corner (resolutionX, resolutionY). When using *AndFill suffixed display modes screen space (0, 0) is the top left of the safe content area bounding box not the viewport.


    Parameters

    Returns Vector

publicpageToWorldCoordinates

publicpeekResolution

publicpeekViewport

publicpopResolutionAndViewport

  • popResolutionAndViewport(): void
  • Returns void

publicpushResolutionAndViewport

  • pushResolutionAndViewport(): void
  • Returns void

publicscreenToPageCoordinates

  • Takes a coordinate in Excalibur screen space, and translates it to normal html page space. For example, this is where html elements might live if you want to position them relative to Excalibur.

    Excalibur screen space starts at the top left (0, 0) corner of the viewport, and extends to the bottom right corner (resolutionX, resolutionY)


    Parameters

    Returns Vector

publicscreenToWorldCoordinates

  • Takes a coordinate in Excalibur screen space, and translates it to Excalibur world space.

    World space is where [[Entity|entities]] in Excalibur live by default [[CoordPlane.World]] and extends infinitely out relative from the [[Camera]].


    Parameters

    • point: Vector

      Screen coordinate to convert

    Returns Vector

publicsetCurrentCamera

  • setCurrentCamera(camera: Camera): void
  • Parameters

    Returns void

publicworldToPageCoordinates

publicworldToScreenCoordinates

  • Takes a coordinate in Excalibur world space, and translates it to Excalibur screen space.

    Screen space is where [[ScreenElement|screen elements]] and [[Entity|entities]] with [[CoordPlane.Screen]] live.


    Parameters

    • point: Vector

      World coordinate to convert

    Returns Vector