Put geysers in schema bc i forgor

This commit is contained in:
Nick 2022-03-23 00:17:24 -04:00
parent ac65cc6bb9
commit 49d09ee37b

View File

@ -522,7 +522,7 @@
"scale": { "scale": {
"type": "number", "type": "number",
"default": 1, "default": 1,
"description" : "How many props to scatter around the planet." "description": "How many props to scatter around the planet."
} }
} }
} }
@ -570,20 +570,20 @@
"properties": { "properties": {
"position": { "position": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
"description" : "When you enter into dialogue, you will look here." "description": "When you enter into dialogue, you will look here."
}, },
"radius": { "radius": {
"type": "number", "type": "number",
"default": 0, "default": 0,
"description" : "Radius of the spherical collision volume where you get the \"talk to\" prompt when looking at. If you use a remoteTriggerPosition, this will instead be the size of the volume that will trigger the dialogue when you enter it." "description": "Radius of the spherical collision volume where you get the \"talk to\" prompt when looking at. If you use a remoteTriggerPosition, this will instead be the size of the volume that will trigger the dialogue when you enter it."
}, },
"xmlFile": { "xmlFile": {
"type": "string", "type": "string",
"description" : "Relative path to the xml file defining the dialogue." "description": "Relative path to the xml file defining the dialogue."
}, },
"remoteTriggerPosition": { "remoteTriggerPosition": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
"description" : "Allows you to trigger dialogue from a distance when you walk into an area." "description": "Allows you to trigger dialogue from a distance when you walk into an area."
} }
} }
} }
@ -596,7 +596,7 @@
"properties": { "properties": {
"revealOn": { "revealOn": {
"type": "string", "type": "string",
"enum": ["enter", "observe", "snapshot"], "enum": [ "enter", "observe", "snapshot" ],
"description": "'enter', 'observe', or 'snapshot' what needs to be done to the volume to unlock the facts" "description": "'enter', 'observe', or 'snapshot' what needs to be done to the volume to unlock the facts"
}, },
"reveals": { "reveals": {
@ -648,6 +648,19 @@
} }
} }
} }
},
"geysers": {
"type": "array",
"description": "A set of geysers",
"items": {
"type": "object",
"properties": {
"position": {
"$ref": "#/$defs/vector3",
"description": "The position of this geyser"
}
}
}
} }
} }
}, },