shadowed text
This commit is contained in:
8
inc/system/system.print.lua
Normal file
8
inc/system/system.print.lua
Normal file
@@ -0,0 +1,8 @@
|
||||
|
||||
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
|
||||
Reference in New Issue
Block a user