mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Updated Schemas
This commit is contained in:
parent
75916d2a31
commit
7ecd664646
@ -1441,6 +1441,11 @@
|
|||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
"properties": {
|
"properties": {
|
||||||
|
"enabled": {
|
||||||
|
"type": "boolean",
|
||||||
|
"description": "Allows the object to be targeted.",
|
||||||
|
"default": true
|
||||||
|
},
|
||||||
"hideInMap": {
|
"hideInMap": {
|
||||||
"type": "boolean",
|
"type": "boolean",
|
||||||
"description": "Stop the object from being targeted on the map."
|
"description": "Stop the object from being targeted on the map."
|
||||||
|
|||||||
@ -44,6 +44,26 @@
|
|||||||
"type": "string",
|
"type": "string",
|
||||||
"description": "Relative filepath to the .wav file to use as the audio. Mutually exclusive with travelAudioClip."
|
"description": "Relative filepath to the .wav file to use as the audio. Mutually exclusive with travelAudioClip."
|
||||||
},
|
},
|
||||||
|
"coords": {
|
||||||
|
"description": "Coordinates that the vessel can use to warp to your solar system.",
|
||||||
|
"$ref": "#/definitions/NomaiCoordinates"
|
||||||
|
},
|
||||||
|
"vesselPosition": {
|
||||||
|
"description": "The position in the solar system the vessel will warp to.",
|
||||||
|
"$ref": "#/definitions/MVector3"
|
||||||
|
},
|
||||||
|
"vesselRotation": {
|
||||||
|
"description": "Euler angles by which the vessel will be oriented.",
|
||||||
|
"$ref": "#/definitions/MVector3"
|
||||||
|
},
|
||||||
|
"warpExitPosition": {
|
||||||
|
"description": "The relative position to the vessel that you will be teleported to when you exit the vessel through the black hole.",
|
||||||
|
"$ref": "#/definitions/MVector3"
|
||||||
|
},
|
||||||
|
"warpExitRotation": {
|
||||||
|
"description": "Euler angles by which the warp exit will be oriented.",
|
||||||
|
"$ref": "#/definitions/MVector3"
|
||||||
|
},
|
||||||
"entryPositions": {
|
"entryPositions": {
|
||||||
"type": "array",
|
"type": "array",
|
||||||
"description": "Manually layout ship log entries in detective mode",
|
"description": "Manually layout ship log entries in detective mode",
|
||||||
@ -89,6 +109,51 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
"NomaiCoordinates": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"x": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"y": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"z": {
|
||||||
|
"type": "array",
|
||||||
|
"items": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"MVector3": {
|
||||||
|
"type": "object",
|
||||||
|
"additionalProperties": false,
|
||||||
|
"properties": {
|
||||||
|
"x": {
|
||||||
|
"type": "number",
|
||||||
|
"format": "float"
|
||||||
|
},
|
||||||
|
"y": {
|
||||||
|
"type": "number",
|
||||||
|
"format": "float"
|
||||||
|
},
|
||||||
|
"z": {
|
||||||
|
"type": "number",
|
||||||
|
"format": "float"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
"EntryPositionInfo": {
|
"EntryPositionInfo": {
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"additionalProperties": false,
|
"additionalProperties": false,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user