-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmod.json
More file actions
89 lines (89 loc) · 2.12 KB
/
Copy pathmod.json
File metadata and controls
89 lines (89 loc) · 2.12 KB
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
80
81
82
83
84
85
86
87
88
89
{
"geode": "5.9.0",
"gd": {
"win": "2.2081",
"android": "2.2081",
"mac": "2.2081",
"ios": "2.2081"
},
"id": "imes.luauapi",
"name": "LuauAPI",
"version": "v0.1.0-beta.26",
"developer": "imes",
"early-load": true,
"load-priority": "first",
"description": "Luau development toolkit for Geode :3",
"dependencies": {
"geode.node-ids": ">=1.23.3",
"prevter.imageplus": ">=1.1.1"
},
"tags": [
"universal",
"interface",
"utility",
"developer"
],
"links": {
"community": "https://discord.gg/E8f6D6XqbW",
"source": "https://github.com/ItMe12s/LuauAPI"
},
"api": {
"include": [
"include/**/*.hpp"
]
},
"resources": {
"sprites": [
"resources/sprites/*.png"
],
"files": [
"mod/**/*.luau",
"resources/*.ttf",
"resources/*.glb"
]
},
"settings": {
"title-user-settings": {
"type": "title",
"name": "User Settings"
},
"imgui-scale": {
"name": "ImGui Scale (Higher = Smaller)",
"description": "Scales the ImGui interface. Higher values make the UI smaller. Consistent across all platforms (including Retina display and SDL mod).",
"type": "float",
"default": 4.5,
"min": 2.0,
"max": 6.0,
"control": {
"slider": true,
"arrows": true,
"arrow-step": 0.25,
"input": true
}
},
"enable-crash-sidecar": {
"type": "bool",
"name": "Enable Crash Context File",
"description": "Writes luauapi-last-context.txt to the crashlogs folder before native crashes. Pair it with the Geode crashlog when reporting bugs. Uses a small amount of disk I/O while enabled.",
"default": false
},
"title-enable-developer-mode": {
"type": "title",
"name": "Developer Settings"
},
"enable-developer-mode": {
"type": "bool",
"name": "Enable Developer Mode",
"description": "Load built-in scripts and environment for developing mods on game startup. Only enable if you know what you're doing.",
"default": false,
"requires-restart": true
},
"enable-executor": {
"name": "Enable Script Executor",
"description": "Show/hide the script executor ImGui window.",
"type": "bool",
"default": false,
"enable-if": "enable-developer-mode"
}
}
}