Skip to content

Commit e136cf1

Browse files
committed
update love2d-api
1 parent b98f312 commit e136cf1

File tree

2 files changed

+15
-3
lines changed

2 files changed

+15
-3
lines changed

3rd/love-api

meta/3rd/love2d/library/love/math.lua

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -610,10 +610,22 @@ function Transform:scale(sx, sy) end
610610
---@overload fun(self: love.Transform, layout: love.MatrixLayout, matrix: table):love.Transform
611611
---@param e1_1 number # The first column of the first row of the matrix.
612612
---@param e1_2 number # The second column of the first row of the matrix.
613-
---@vararg number # Additional matrix elements.
613+
---@param e1_3 number # The third column of the first row of the matrix.
614+
---@param e1_4 number # The fourth column of the first row of the matrix.
615+
---@param e2_1 number # The first column of the second row of the matrix.
616+
---@param e2_2 number # The second column of the second row of the matrix.
617+
---@param e2_3 number # The third column of the second row of the matrix.
618+
---@param e2_4 number # The fourth column of the second row of the matrix.
619+
---@param e3_1 number # The first column of the third row of the matrix.
620+
---@param e3_2 number # The second column of the third row of the matrix.
621+
---@param e3_3 number # The third column of the third row of the matrix.
622+
---@param e3_4 number # The fourth column of the third row of the matrix.
623+
---@param e4_1 number # The first column of the fourth row of the matrix.
624+
---@param e4_2 number # The second column of the fourth row of the matrix.
625+
---@param e4_3 number # The third column of the fourth row of the matrix.
614626
---@param e4_4 number # The fourth column of the fourth row of the matrix.
615627
---@return love.Transform transform # The Transform object the method was called on. Allows easily chaining Transform methods.
616-
function Transform:setMatrix(e1_1, e1_2, ..., e4_4) end
628+
function Transform:setMatrix(e1_1, e1_2, e1_3, e1_4, e2_1, e2_2, e2_3, e2_4, e3_1, e3_2, e3_3, e3_4, e4_1, e4_2, e4_3, e4_4) end
617629

618630
---
619631
---Resets the Transform to the specified transformation parameters.

0 commit comments

Comments
 (0)