mirror of
https://github.com/Outer-Wilds-New-Horizons/new-horizons.git
synced 2025-12-11 20:15:44 +01:00
Update schema
This commit is contained in:
parent
ff105e9f0d
commit
40531bf454
@ -3,7 +3,7 @@
|
||||
"author": "xen",
|
||||
"name": "New Horizons",
|
||||
"uniqueName": "xen.NewHorizons",
|
||||
"version": "0.6.1",
|
||||
"version": "0.6.2",
|
||||
"owmlVersion": "2.1.0",
|
||||
"dependencies": [ "PacificEngine.OW_CommonResources" ]
|
||||
}
|
||||
|
||||
@ -2,9 +2,7 @@
|
||||
"title": "Planet",
|
||||
"type": "object",
|
||||
"required": [
|
||||
"name",
|
||||
"Base",
|
||||
"Orbit"
|
||||
"name"
|
||||
],
|
||||
"properties": {
|
||||
"name": {
|
||||
@ -61,6 +59,35 @@
|
||||
"default": 0,
|
||||
"description": "Sea level for the planet. Optional"
|
||||
},
|
||||
"waterTint": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"R": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"minimum": 0,
|
||||
"maximum": 255
|
||||
},
|
||||
"G": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"minimum": 0,
|
||||
"maximum": 255
|
||||
},
|
||||
"B": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"minimum": 0,
|
||||
"maximum": 255
|
||||
},
|
||||
"A": {
|
||||
"type": "integer",
|
||||
"default": 0,
|
||||
"minimum": 0,
|
||||
"maximum": 255
|
||||
}
|
||||
}
|
||||
},
|
||||
"groundSize": {
|
||||
"type": "number",
|
||||
"default": 0,
|
||||
@ -141,6 +168,11 @@
|
||||
"type": "string",
|
||||
"description": "Relative filepath to the cloud ramp texture, if the planet has clouds. Optional."
|
||||
},
|
||||
"useBasicCloudShader": {
|
||||
"type": "boolean",
|
||||
"default": false,
|
||||
"description" : "Use Giant's deep shader or just apply the cloud texture as is."
|
||||
},
|
||||
"fogTint": {
|
||||
"type": "object",
|
||||
"description": "Colour of fog on the planet.",
|
||||
@ -349,6 +381,10 @@
|
||||
"texture": {
|
||||
"type": "string",
|
||||
"description": "Relative filepath to the texture used for the rings."
|
||||
},
|
||||
"rotationSpeed": {
|
||||
"type": "number",
|
||||
"default": 0
|
||||
}
|
||||
}
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user