4
0
Files
mranderson/inc/system/system.print.lua
Zsolt Tasnadi 8e8d181c34
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
shadowed text
2025-12-13 20:11:50 +01:00

8 lines
294 B
Lua

function Print.text(text, x, y, color, fixed, scale)
local shadow_color = Config.colors.black
if color == shadow_color then shadow_color = Config.colors.light_grey end
scale = scale or 1
print(text, x + 1, y + 1, shadow_color, fixed, scale)
print(text, x, y, color, fixed, scale)
end