• Start a game

    NB: The beforeBegin method is only used when generating demos for the book, and platform is only used when deploying to mobile or desktop. If you need to use platform, then you can provide ()=>{} as the beforeBegin function.

    TODO: Pixi.js v8 strongly recommends using async/await.

    Parameters

    • domId: string

      The name of the DIV into which the game should be placed

    • config: JetLagGameConfig

      The game configuration object

    • builder: ((level) => void)

      A function for building the first visible level of the game

        • (level): void
        • Parameters

          • level: number

          Returns void

    • beforeBegin: (() => void) = ...

      A function to run before the builder runs. This is used by the book build system, and should be ()=>{} otherwise.

        • (): void
        • Returns void

    • platform: PlatformDevice = ...

      Platform-specific features. Defaults to HTML5

    Returns void