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

@ -497,65 +497,65 @@
"type": "object", "type": "object",
"properties": { "properties": {
"scatter": { "scatter": {
"type": "array", "type": "array",
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"count": { "count": {
"type": "integer" "type": "integer"
}, },
"path": { "path": {
"type": "string", "type": "string",
"description": "Either the path in the scene hierarchy of the item to copy or the path to the object in the supplied asset bundle" "description": "Either the path in the scene hierarchy of the item to copy or the path to the object in the supplied asset bundle"
}, },
"assetBundle": { "assetBundle": {
"type": "string", "type": "string",
"description": "Relative filepath to an asset-bundle" "description": "Relative filepath to an asset-bundle"
}, },
"offset": { "offset": {
"$ref": "#/$defs/vector3" "$ref": "#/$defs/vector3"
}, },
"rotation": { "rotation": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
"description": "Euler angle degrees" "description": "Euler angle degrees"
}, },
"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."
}
} }
} }
}
}, },
"details": { "details": {
"type": "array", "type": "array",
"items": { "items": {
"type": "object", "type": "object",
"properties": { "properties": {
"path": { "path": {
"type": "string", "type": "string",
"description": "Either the path in the scene hierarchy of the item to copy or the path to the object in the supplied asset bundle" "description": "Either the path in the scene hierarchy of the item to copy or the path to the object in the supplied asset bundle"
}, },
"assetBundle": { "assetBundle": {
"type": "string", "type": "string",
"description": "Relative filepath to an asset-bundle" "description": "Relative filepath to an asset-bundle"
}, },
"position": { "position": {
"$ref": "#/$defs/vector3" "$ref": "#/$defs/vector3"
}, },
"rotation": { "rotation": {
"$ref": "#/$defs/vector3", "$ref": "#/$defs/vector3",
"description": "Euler angle degrees" "description": "Euler angle degrees"
}, },
"scale": { "scale": {
"type": "number", "type": "number",
"default": 1 "default": 1
}, },
"alignToNormal": { "alignToNormal": {
"type": "boolean", "type": "boolean",
"description": "Do we override rotation and try to automatically align this object to stand upright on the body's surface?", "description": "Do we override rotation and try to automatically align this object to stand upright on the body's surface?",
"default": false "default": false
} }
}, },
"scale": { "scale": {
"type": "number", "type": "number",
@ -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"
}
}
}
} }
} }
}, },