- [FIX] draw.text() també soporta que li pases un numero pa escriure-lo

This commit is contained in:
2025-06-18 19:52:24 +02:00
parent e1d5eb051c
commit 9cd991cb44
2 changed files with 13 additions and 2 deletions

View File

@@ -268,6 +268,13 @@ function draw.surfrot(sx, sy, sw, sh, x, y, a) end
---Draw text to (x,y) using the specified color
function draw.text(text, x, y, color) end
---@param text number
---@param x number
---@param y number
---@param color number
---Draw text to (x,y) using the specified color
function draw.text(text, x, y, color) end
---@class shader
shader = {}