sandboxels/mods/loader_test/mod.toml

23 lines
462 B
TOML
Raw Normal View History

2025-06-29 09:22:39 -04:00
[mod]
name = "test-finder"
version = "0.1.0"
external_elements = [
{path = "mods/loader_test/test_element.toml", name = "test_element"},
]
2025-07-02 11:02:15 -04:00
# Completely arbitrary
incompatible_mods = [
"mods/nousersthings.js",
"mods/lightmap.js",
"mods/betterSettings.js"
]
2025-06-29 09:22:39 -04:00
2025-07-02 11:02:15 -04:00
[scripts]
preload = [
"mods/loader_test/pre_load.js",
"mods/loader_test/random_file.js"
]
postload = [
"mods/loader_test/post_load.js",
"mods/loader_test/random_file.js"
]