Respackopts/run/resourcepacks/testpack/respackopts.json5
JFronny 3078a4d7fa
feat: support string entries
While these are not as useful, they are supported as native types in muScript and take no effort to support
2024-05-18 18:54:38 +02:00

53 lines
940 B
Plaintext

{
id: "lumi",
version: 10,
capabilities: ["FileFilter", "DirFilter", "DirFilterAdditive"],
conf: {
tonemap: [
"default",
"vibrant",
"film"
],
pbr: {
type: "boolean",
default: true,
reloadType: "Simple"
},
debugMode: [
"none",
"normal",
"viewDir"
],
someString: {
type: "string",
default: "This is a Value?"
},
waterVertexWavy: false,
numTest: 15.4,
oakFence: {
uvLock: true,
invertOrientation: false,
yFactor: 0
},
subcategoryTest: {
thisIsCool: true,
numberInSub: 15,
enumInSub: [
"zthisIsDefault",
"yay1",
"yay2",
"yay3",
"athisIsLast"
],
sliderTest: {
min: 15,
default: 16,
max: 20
},
enableLang: true,
enableLangForceDisable: false,
enableLangJokeFallback: true
}
}
}