1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2025-07-04 23:04:43 +00:00
Files
bedrock-samples/metadata/json_schemas/client_server/1.21.50/Camera Aim-Assist Preset.json
Mike Ammerlaan d2c831e602 v1.21.90.3
2025-06-18 05:19:56 -07:00

66 lines
2.5 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "3639918135",
"x-format-version": "1.21.50",
"x-minecraft-version": "1.21.90-beta.3",
"definitions": {
"484447252": {
"title": "struct SharedTypes::v1_21_50::CameraAimAssistPresetDefinition",
"type": "object",
"properties": {
"default_item_settings": {
"description": "Optional. Default Aim-Assist Category used for Items not found in 'item_settings'.",
"type": "string"
},
"exclusion_list": {
"description": "Optional. List of block/entity identifiers to exclude from aim assist targeting.",
"type": "array",
"items": {
"type": "string"
}
},
"hand_settings": {
"description": "Optional. Aim-assist Category used for an empty hand.",
"type": "string"
},
"identifier": {
"description": "Namespaced identifier for Camera Aim-Assist preset. Namespace and name must be separated by a ':'.",
"type": "string"
},
"item_settings": {
"description": "Optional. Map of Item identifiers to Aim-Assist Category names found in the specified 'categories'.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"liquid_targeting_list": {
"description": "Optional. List of item identifiers that will target liquid blocks with aim-assist when being held.",
"type": "array",
"items": {
"type": "string"
}
}
},
"required": [
"identifier"
]
}
},
"title": "minecraft:aim_assist_preset",
"type": "object",
"properties": {
"format_version": {
"description": "Version of the JSON schema for this file. Aim-assist preset requires at least version 1.21.50.",
"type": "string"
},
"minecraft:aim_assist_preset": {
"description": "A single Camera Aim-Assist Preset Definition.",
"$ref": "#/definitions/484447252"
}
},
"required": [
"format_version",
"minecraft:aim_assist_preset"
]
}