Updated Schemas

This commit is contained in:
Ben C 2025-02-15 06:21:09 +00:00
parent 06fd45e83e
commit b76623edb1

View File

@ -353,16 +353,23 @@
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {
"color": {
"$ref": "#/definitions/MColor"
},
"scale": { "scale": {
"type": "number", "type": "number",
"description": "Scale height of the proc gen.",
"format": "float", "format": "float",
"minimum": 0.0 "minimum": 0.0
}, },
"color": {
"description": "Ground color, only applied if no texture or material is chosen.",
"$ref": "#/definitions/MColor"
},
"material": { "material": {
"description": "Can pick a preset material with a texture from the base game. Does not work with color.",
"$ref": "#/definitions/Material" "$ref": "#/definitions/Material"
},
"texturePath": {
"type": "string",
"description": "Can use a custom texture. Does not work with material or color."
} }
} }
}, },
@ -372,12 +379,14 @@
"x-enumNames": [ "x-enumNames": [
"Default", "Default",
"Ice", "Ice",
"Quantum" "Quantum",
"Rock"
], ],
"enum": [ "enum": [
"default", "default",
"ice", "ice",
"quantum" "quantum",
"rock"
] ]
}, },
"AtmosphereModule": { "AtmosphereModule": {