Available since LÖVE 11.0 |
This enum is not supported in earlier versions. |
The layout of matrix elements (row-major or column-major).
matrix = { {a, b, c, d}, -- row 1 {e, f, g, h}, -- row 2 -- etc. } -- or matrix = { a, b, c, d, -- row 1 e, f, g, h, -- row 2 -- etc. }
matrix = { {a, b, c, d}, -- column 1 {e, f, g, h}, -- column 2 -- etc. } -- or matrix = { a, b, c, d, -- column 1 e, f, g, h, -- column 2 -- etc. }