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

This commit is contained in:
Joshua Thome 2024-10-05 16:09:15 -05:00
commit 670ba1da25

View File

@ -65,6 +65,10 @@
"description": "Add a cloaking field to this planet", "description": "Add a cloaking field to this planet",
"$ref": "#/definitions/CloakModule" "$ref": "#/definitions/CloakModule"
}, },
"Dream": {
"description": "Make this planet part of the dream world",
"$ref": "#/definitions/DreamModule"
},
"FocalPoint": { "FocalPoint": {
"description": "Make this body into a focal point (barycenter)", "description": "Make this body into a focal point (barycenter)",
"$ref": "#/definitions/FocalPointModule" "$ref": "#/definitions/FocalPointModule"
@ -799,6 +803,20 @@
} }
} }
}, },
"DreamModule": {
"type": "object",
"additionalProperties": false,
"properties": {
"inDreamWorld": {
"type": "boolean",
"description": "Setting this value will make this body a dream world style dimension where its contents are only activated while entering it from a dream campfire. Disables the body's map marker."
},
"generateSimulationMeshes": {
"type": "boolean",
"description": "Whether to generate simulation meshes (the models used in the \"tronworld\" or \"matrix\" view) for most objects on this planet by cloning the existing meshes and applying the simulation materials. Leave this off if you are building your own simulation meshes or using existing objects which have them."
}
}
},
"FocalPointModule": { "FocalPointModule": {
"type": "object", "type": "object",
"additionalProperties": false, "additionalProperties": false,