-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmoonwave.toml
More file actions
42 lines (32 loc) · 1.38 KB
/
moonwave.toml
File metadata and controls
42 lines (32 loc) · 1.38 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
classOrder = [
"Bootstrapper",
]
title = "Bootstrapper"
gitRepoUrl = "https://github.com/LDgerrits/Bootstrapper"
gitSourceBranch = "main"
changelog = false
[home]
enabled = true
includeReadme = false
[[home.features]]
title = "Deterministic Execution"
description = "Load modules alphabetically or provide a strict manual sequence. Your game will start exactly the same way every single time."
[[home.features]]
title = "Centralized Scheduler"
description = "Iterate over your modules and fire their updates synchronously."
[[home.features]]
title = "Luau Method Syntax"
description = "Use standard dot or colon notation (`.` or `:`) in your string arguments to explicitly call static functions or inject `self` for object methods."
[[home.features]]
title = "Flexible Event Binding"
description = "Hook a sequence of modules directly to `RunService` events, `RBXScriptSignals`, or custom Signal objects."
[[home.features]]
title = "Automatic Memory Profiling"
description = "Automatically assigns `debug.setmemorycategory` to every module's thread and `RunService` connection so your `MicroProfiler` is readable."
[[home.features]]
title = "Lazy Require"
description = "Pass raw `ModuleScript` instances directly as argument. Bootstrapper will automatically require them."
organizationName = "LDGerrits"
projectName = "Bootstrapper"
url = "https://LDGerrits.github.io"
baseUrl = "/Bootstrapper/"