Updated Schemas

This commit is contained in:
github-actions[bot] 2022-07-14 04:19:22 +00:00
parent 434cb6cbb5
commit 0fac02ad01
2 changed files with 10 additions and 2 deletions

View File

@ -231,7 +231,7 @@
"type": "integer", "type": "integer",
"description": "The alpha (opacity) component of this colour", "description": "The alpha (opacity) component of this colour",
"format": "int32", "format": "int32",
"default": 255.0, "default": 255,
"maximum": 255.0, "maximum": 255.0,
"minimum": 0.0 "minimum": 0.0
} }
@ -675,6 +675,14 @@
"textureMap": { "textureMap": {
"type": "string", "type": "string",
"description": "Relative filepath to the texture used for the terrain." "description": "Relative filepath to the texture used for the terrain."
},
"resolution": {
"type": "integer",
"description": "Resolution of the heightmap.\nHigher values means more detail but also more memory/cpu/gpu usage.",
"format": "int32",
"default": 51,
"maximum": 2147483647.0,
"minimum": 0.0
} }
} }
}, },

View File

@ -234,7 +234,7 @@
"type": "integer", "type": "integer",
"description": "The alpha (opacity) component of this colour", "description": "The alpha (opacity) component of this colour",
"format": "int32", "format": "int32",
"default": 255.0, "default": 255,
"maximum": 255.0, "maximum": 255.0,
"minimum": 0.0 "minimum": 0.0
} }