Updated Schemas

This commit is contained in:
Ben C 2023-07-22 18:43:04 +00:00
parent e4c8b14f6f
commit 8f394fd458

View File

@ -2932,6 +2932,43 @@
"computer": {
"description": "Will create a modern Nomai computer linked to this gravity cannon.",
"$ref": "#/definitions/NomaiComputerInfo"
},
"controls": {
"description": "Position of the interface used to launc the shuttle",
"$ref": "#/definitions/GeneralPropInfo"
}
}
},
"GeneralPropInfo": {
"type": "object",
"additionalProperties": false,
"properties": {
"position": {
"description": "Position of the object",
"$ref": "#/definitions/MVector3"
},
"parentPath": {
"type": "string",
"description": "The relative path from the planet to the parent of this object. Optional (will default to the root sector)."
},
"isRelativeToParent": {
"type": "boolean",
"description": "Whether the positional and rotational coordinates are relative to parent instead of the root planet object."
},
"rename": {
"type": "string",
"description": "An optional rename of this object"
},
"rotation": {
"description": "Rotation of the object",
"$ref": "#/definitions/MVector3"
},
"alignRadial": {
"type": [
"boolean",
"null"
],
"description": "Do we try to automatically align this object to stand upright relative to the body's center? Stacks with rotation.\nDefaults to true for geysers, tornados, and volcanoes, and false for everything else."
}
}
},