-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
LandscapingExtension.lua
47 lines (36 loc) · 1.4 KB
/
LandscapingExtension.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
--[[
Copyright (C) Achimobil, 2024
Author: Achimobil
Contact:
https://github.com/Achimobil/FS25_FreeTerraformingAndPainting
Important:
No copy and use in own mods allowed.
Das verändern und wiederöffentlichen, auch in Teilen, ist untersagt und wird abgemahnt.
]]
LandscapingExtension = {}
LandscapingExtension.Debug = false;
LandscapingExtension.metadata = {
title = "LandscapingExtension",
author = "Achimobil",
info = "Das verändern und wiederöffentlichen, auch in Teilen, ist untersagt und wird abgemahnt."
};
LandscapingExtension.modDir = g_currentModDirectory;
function LandscapingExtension.DebugTable(text, myTable, maxDepth)
if not LandscapingExtension.Debug then return end
if myTable == nil then
print("LandscapingExtensionDebug: " .. text .. " is nil");
else
print("LandscapingExtensionDebug: " .. text)
DebugUtil.printTableRecursively(myTable,"_",0, maxDepth or 2);
end
end
-- Beispiel: LandscapingExtension.DebugText("Alter: %s", age)
function LandscapingExtension.DebugText(text, ...)
if not LandscapingExtension.Debug then return end
print("LandscapingExtensionDebug: " .. string.format(text, ...));
end
function LandscapingExtension.getCost(superfunc, displacedVolumeOrArea)
-- LandscapingExtension.DebugText("Landscaping.getCost(%s, %s)", superfunc, displacedVolumeOrArea)
return 0;
end
Landscaping.getCost = Utils.overwrittenFunction(Landscaping.getCost, LandscapingExtension.getCost)