1
0
mirror of https://github.com/Mojang/bedrock-protocol-docs.git synced 2025-11-06 12:25:14 +00:00
Files
bedrock-protocol-docs/json/ServerPlayerPostMovePositionPacket.json

61 lines
1.8 KiB
JSON

{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "2457127683",
"x-format-version": "MISSING VERSION",
"x-minecraft-version": "1.21.120",
"x-protocol-version": 859,
"definitions": {
"1644246396": {
"title": "ServerPlayerPostMovePositionPacketPayload",
"type": "object",
"properties": {
"Pos": {
"$ref": "#/definitions/4004946602",
"x-ordinal-index": 0
}
},
"required": [
"Pos"
]
},
"4004946602": {
"title": "Vec3",
"type": "object",
"properties": {
"X": {
"type": "number",
"x-underlying-type": "float",
"x-ordinal-index": 0
},
"Y": {
"type": "number",
"x-underlying-type": "float",
"x-ordinal-index": 1
},
"Z": {
"type": "number",
"x-underlying-type": "float",
"x-ordinal-index": 2
}
},
"required": [
"X",
"Y",
"Z"
]
}
},
"title": "ServerPlayerPostMovePositionPacket",
"description": "Used to send a player's server position to the respective client at the end of movement.",
"type": "object",
"properties": {
"mPayload": {
"$ref": "#/definitions/1644246396",
"x-ordinal-index": 0
}
},
"$metaProperties": {
"[cereal:packet]": 16,
"[cereal:packet_details]": "Is currently only used for debug draw. Packets will not be sent if debug draw is not available."
}
}