Merge branch 'hawkbar-prop-cleanup' of https://github.com/Outer-Wilds-New-Horizons/new-horizons into hawkbar-prop-cleanup

This commit is contained in:
Joshua Thome 2023-03-18 11:51:00 -05:00
commit 80dd2cd5b6
2 changed files with 7 additions and 7 deletions

View File

@ -1065,7 +1065,7 @@
"type": "array", "type": "array",
"description": "Add black/white-holes to this planet", "description": "Add black/white-holes to this planet",
"items": { "items": {
"$ref": "#/definitions/SingularityModule" "$ref": "#/definitions/SingularityInfo"
} }
}, },
"signals": { "signals": {
@ -1825,11 +1825,6 @@
"type": "string", "type": "string",
"description": "An optional rename of this object" "description": "An optional rename of this object"
}, },
"isRelativeToGroup": {
"type": "boolean",
"description": "Whether the socket will be placed relative to the group it belongs to. Overrides `isRelativeToParent`",
"default": true
},
"probability": { "probability": {
"type": "number", "type": "number",
"description": "The probability any props that are part of this group will occupy this socket", "description": "The probability any props that are part of this group will occupy this socket",
@ -1980,7 +1975,7 @@
} }
} }
}, },
"SingularityModule": { "SingularityInfo": {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,
"properties": { "properties": {

View File

@ -216,6 +216,11 @@
"rename": { "rename": {
"type": "string", "type": "string",
"description": "An optional rename of this object" "description": "An optional rename of this object"
},
"hasPhysics": {
"type": "boolean",
"description": "Whether the vessel should have physics enabled. This must be set to false for the vessel to stay attached to a parent body.",
"default": true
} }
} }
}, },