Files
minecraft-bedrock-json-schemas/.vscode/easy.code-snippets
Xterionix ae9e79c04d 1.21.80 (#343)
* - Updated old biome format

* - Added biome tags component

* - Added dismount mode, and rider enter/exit event

* - Made surface_color not required

* - Update float wander goal

* - Update follow mob behavior

* - Added music def field

* - Added camera fields to rideable

* - Add array snippet

* - Updated leashable component with presets

* - Made texture field optional in destruction particles

* - Marked isotropic as stable

* - Moved can_be_stolen back

* - Updated tempt goal

* - Added float tempt behavior

* - Made heightmap project optional

* - Added distance based render methods

* - Marked tint method as stable

* - Added droop item y offset

* - Added has_equipment_tag filter

* - Remove unnused test.json

* - Allow for custom components

* - Add new block culling support

* - Removed enum for biome tags in support of custom biomes

* - Added replace_biomes component

* - Fix errors
2025-04-29 09:02:06 +02:00

35 lines
1.2 KiB
Plaintext

{
"speed_multiplier": {
"prefix": "snippet.speed_multiplier",
"body": [ "\"priority\": { \"$ref\": \"types/base_priority.json\" },", "\"speed_multiplier\": { \"$ref\": \"types/base_speed_multiplier.json\" }," ]
},
"priority": {
"prefix": "snippet.priority",
"body": "\"priority\": { \"$ref\": \"types/base_priority.json\" },"
},
"object": {
"prefix": "json.object",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"object\", \n\"additionalProperties\": false,\n\"properties\": {}"
},
"array": {
"prefix": "json.array",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"array\", \n\"items\": {\n \"type\": \"\"\n}"
},
"number": {
"prefix": "json.number",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"number\", \n\"minimum\": 0"
},
"integer": {
"prefix": "json.integer",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"integer\", \n\"minimum\": 0"
},
"string": {
"prefix": "json.string",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"string\""
},
"boolean": {
"prefix": "json.boolean",
"body": "\"title\": \"\",\n\"description\": \"\",\n\"type\": \"boolean\",\n\"default\": false"
}
}