The Svg System is for loading SVG line drawings into a game. SVG line drawings can be made in InkScape. In JetLag, we do not use line drawings to their full potential. We only use them to define a set of lines for a simple, stationary Actor. You should draw a picture on top of your line drawing, so that the player knows that there is an actor on the screen.

Note that SVG supports curves, but JetLag does not. You can instruct InkScape not to make curves. If you forget, JetLag will turn your curves into straight lines.

Methods

Methods

  • Process an SVG file and go through all of the "path" elements in the file. For each path, create a thin obstacle, and then run the provided callback on the obstacle.

    Note that we ignore SVG /translate/ directives... we let the programmer translate the drawing instead.

    Parameters

    • file: string

      The name of the file to load

    • x: number

      The X coordinate of the top left corner of the bounding box for the SVG

    • y: number

      The Y coordinate of the top left corner of the bounding box for the SVG

    • stretchX: number

      The factor by which to stretch in the X dimension

    • stretchY: number

      The factor by which to stretch in the Y dimension

    • actorMaker: ((cx, cy, width, rotation) => void)

      A callback for making each line as an actor

        • (cx, cy, width, rotation): void
        • Parameters

          • cx: number
          • cy: number
          • width: number
          • rotation: number

          Returns void

    Returns void