forked from ZhooL/FS22_EnhancedVehicle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibUtils.lua
53 lines (40 loc) · 1.05 KB
/
libUtils.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
--
-- Lib: libUtils (for Farming Simulator 22)
--
-- Author: Majo76
-- email: [email protected]
-- @Date: 22.11.2021
-- @Version: 1.0.0.0
-- #############################################################################
local myName = "libUtils"
libUtils = {}
libUtils.__index = libUtils
setmetatable(libUtils, {
__call = function (cls, ...)
local self = setmetatable({}, cls)
self.debug = 0
self:new(...)
return self
end,
})
-- #############################################################################
function libUtils:new()
if self.debug > 0 then print("-> libUtils: new()") end
end
-- #############################################################################
function libUtils:setDebug(dbg)
self.debug = dbg or 0
end
-- #############################################################################
function libUtils:args_to_txt(...)
local args = { ... }
local txt = ""
local i, v
for i, v in ipairs(args) do
if i > 1 then
txt = txt .. ", "
end
txt = txt .. i .. ": " .. tostring(v)
end
return(txt)
end