phaser - v4.0.0-rc.4
    Preparing search index...
    • Translates the given Array Matrix by shifting each column and row the amount specified.

      A matrix is a two-dimensional array (array of arrays), where all sub-arrays (rows) have the same length. There must be at least two rows. This is an example matrix:

      [
      [ 1, 1, 1, 1, 1, 1 ],
      [ 2, 0, 0, 0, 0, 4 ],
      [ 2, 0, 1, 2, 0, 4 ],
      [ 2, 0, 3, 4, 0, 4 ],
      [ 2, 0, 0, 0, 0, 4 ],
      [ 3, 3, 3, 3, 3, 3 ]
      ]

      Type Parameters

      • T

      Parameters

      • Optionalmatrix: T[][]

        The array matrix to translate.

      • Optionalx: number

        The amount to horizontally translate the matrix by. Default 0.

      • Optionaly: number

        The amount to vertically translate the matrix by. Default 0.

      Returns T[][]