1
0
Fork 0
mirror of https://github.com/Reuh/ubiquitousse.git synced 2025-10-27 17:19:31 +00:00

ubiquitousse.asset

This commit is contained in:
Étienne Fildadut 2018-11-02 16:09:18 +01:00
parent bdb9e710d9
commit ed683c6a70
5 changed files with 85 additions and 8 deletions

View file

@ -53,10 +53,10 @@ draw = {
fps = function() end,
--- Sets the drawing color
-- @tparam number r the red component (0-255)
-- @tparam number g the green component (0-255)
-- @tparam number b the blue component (0-255)
-- @tparam[opt=255] number a the alpha (opacity) component (0-255)
-- @tparam number r the red component (0-1)
-- @tparam number g the green component (0-1)
-- @tparam number b the blue component (0-1)
-- @tparam[opt=1] number a the alpha (opacity) component (0-1)
-- @impl backend
color = function(r, g, b, a) end,