Updated Schemas

This commit is contained in:
Ben C 2023-09-02 01:03:25 +00:00
parent 0f6f67e55f
commit bd3177c71a
2 changed files with 5 additions and 5 deletions

View File

@ -4,14 +4,10 @@
"type": "object",
"description": "Describes a celestial body to generate",
"additionalProperties": false,
"required": [
"name"
],
"properties": {
"name": {
"type": "string",
"description": "Unique name of your planet",
"minLength": 1
"description": "Unique name of your planet. If not specified, the file name (without the extension) is used."
},
"starSystem": {
"type": "string",

View File

@ -5,6 +5,10 @@
"description": "Configuration for a specific star system",
"additionalProperties": false,
"properties": {
"name": {
"type": "string",
"description": "Unique name of your system. If not specified, the file name (without the extension) is used."
},
"freeMapAngle": {
"type": "boolean",
"description": "In this system should the player be able to rotate their map camera freely or be stuck above the plane of the solar system?"