forked from squeek502/Minimap-HUD
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodinfo.lua
79 lines (77 loc) · 2.61 KB
/
modinfo.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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
name = "Minimap HUD"
description = "Adds a minimap to the HUD"
author = "squeek"
version = "1.0.5"
forumthread = "/files/file/352-minimap-hud/"
icon_atlas = "modicon.xml"
icon = "modicon.tex"
dont_starve_compatible = true
reign_of_giants_compatible = true
shipwrecked_compatible = true
-- this setting is dumb; this mod is likely compatible with all future versions
api_version = 6
configuration_options =
{
{
name = "Minimap Size",
options =
{
{description = "Tiny", data = 0.125},
{description = "Small", data = 0.175},
{description = "Medium", data = 0.225},
{description = "Large", data = 0.275},
{description = "Huge", data = 0.325},
{description = "Giant", data = 0.375},
},
default = 0.225,
},
{
name = "Position",
options =
{
{description = "Top Right", data = "top_right"},
{description = "Top Left", data = "top_left"},
{description = "Top Center", data = "top_center"},
{description = "Middle Left", data = "middle_left"},
{description = "Middle Center", data = "middle_center"},
{description = "Middle Right", data = "middle_right"},
{description = "Bottom Left", data = "bottom_left"},
{description = "Bottom Center", data = "bottom_center"},
{description = "Bottom Right", data = "bottom_right"},
},
default = "top_right"
},
{
name = "Horizontal Margin",
options =
{
{description = "None", data = 0},
{description = "Very Tiny", data = 5},
{description = "Tiny", data = 12.5},
{description = "Very Small", data = 25},
{description = "Small", data = 50},
{description = "Medium", data = 125},
{description = "Large", data = 235},
{description = "Huge", data = 350},
{description = "Giant", data = 450},
},
default = 235
},
{
name = "Vertical Margin",
options =
{
{description = "None", data = 0},
{description = "Very Tiny", data = 5},
{description = "Tiny", data = 12.5},
{description = "Very Small", data = 25},
{description = "Small", data = 50},
{description = "Medium", data = 125},
{description = "Large", data = 235},
{description = "Very Large", data = 300},
{description = "Huge", data = 350},
{description = "Giant", data = 450},
},
default = 25
},
}