Version History for the Camel Entity
<< back to entity list
Note: Version history only goes as far back as the earliest version on file (Minecraft 1.12.0.28 ). View Detailed Entity Information >>
Changes in version 1.20.0.21
- Resource Packs > Animations > camel.animation.json
- Previous Value:
"animation.camel.look_at_player": {
"loop": true,
"bones": {
"head": {
"rotation": [
"math.clamp(query.target_x_rotation, -25, 45 )",
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
}
} - Previous Value:
"head": {
"rotation": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
} - New Value:
"head": {
"rotation": [
"variable.xHeadRot",
"variable.yHeadRot",
0
]
}Previous Value:"head": {
"rotation": [
"variable.xDashHeadRot",
"variable.yHeadRot",
0
]
} - New Value:
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
]
}
}Previous Value:"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
],
"2.1": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
}
- Resource Packs > Animation Controllers > camel.animation_controllers.json
- Previous Value:
"controller.animation.camel.look_at_player": {
"initial_state": "looking_at_player",
"states": {
"looking_at_player": {
"animations": [
"look_at_player"
]
}
}
} - New Value:
"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sit_down": "query.is_sitting"
},
{
"idling": "query.all_animations_finished"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sit_down": "query.is_sitting"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
}
- Resource Packs > Entity > camel.entity.json
- New Value:
"animations": {
"moving": "animation.camel.walk",
"sit_down": "animation.camel.sit_down",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.stand_up",
"look_at_target": "animation.camel.look_at_target",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
}Previous Value:"animations": {
"moving": "animation.camel.walk",
"sit_down": "animation.camel.sit_down",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.stand_up",
"look_at_player": "animation.camel.look_at_player",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
} - New Value:
"animation_controllers": [
{
"general": "controller.animation.camel.general"
},
{
"idle": "controller.animation.camel.idle"
}
]Previous Value:"animation_controllers": [
{
"general": "controller.animation.camel.general"
},
{
"idling": "controller.animation.camel.idle"
},
{
"look_at_player": "controller.animation.camel.look_at_player"
}
] - New Value:
"scripts": {
"pre_animation": [
"variable.moving = query.ground_speed < 0 || query.vertical_speed < 0;",
"variable.xTargetRot = math.clamp(query.target_x_rotation, -30, 30);",
"variable.xHeadRot = query.dash_cooldown_progress < 0 ? math.clamp(variable.xTargetRot + (45 * (1 - query.dash_cooldown_progress)), -25, 70) : variable.xTargetRot;",
"variable.yHeadRot = math.clamp(query.target_y_rotation, -30, 30);"
]
}Previous Value:"scripts": {
"pre_animation": [
"variable.moving = query.ground_speed < 0 || query.vertical_speed < 0;",
"variable.xHeadRot = math.clamp(query.target_x_rotation, -25, 45);",
"variable.yHeadRot = math.clamp(query.target_y_rotation, -30, 30);",
"variable.xDashHeadRot = query.dash_cooldown_progress < 0 ? math.clamp(variable.xHeadRot + (45 * (1 - query.dash_cooldown_progress)), -25, 70) : variable.xHeadRot;"
]
}
Changes in version 1.19.80.2
- Resource Packs > Animation Controllers > camel.animation_controllers.json
- New Value:
"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"idling": "!variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water && !query.is_riding"
}
],
"blend_transition": 0.2
}Previous Value:"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"idling": "!variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.2
} - New Value:
"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"idling": "(query.is_on_ground || query.is_in_water || query.is_riding) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water || query.is_riding) && variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"idling": "(query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
} - New Value:
"idling": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water && !query.is_riding"
}
],
"blend_transition": 0.5
}Previous Value:"idling": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.5
}
Changes in version 1.19.70.22
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"controlled_value": 1.5625,
"jump_prevented_value": 0.5625
}Previous Value:"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"jump_prevented_value": 0.5625
}
Changes in version 1.19.70.20
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"jump_prevented_value": 0.5625
}Previous Value:"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"controlled_value": 1.5625,
"jump_prevented_value": 0.5625
}
Changes in version 1.19.70.2
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"controlled_value": 1.5625,
"jump_prevented_value": 0.5625
}Previous Value:"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"jump_prevented_value": 0.5625
}
- Resource Packs > Sounds > step1.fsb
- Resource Packs > Sounds > step2.fsb
- Resource Packs > Sounds > step3.fsb
- Resource Packs > Sounds > step4.fsb
- Resource Packs > Sounds > step5.fsb
- Resource Packs > Sounds > step6.fsb
- Resource Packs > Sounds > step_sand1.fsb
- Resource Packs > Sounds > step_sand2.fsb
- Resource Packs > Sounds > step_sand3.fsb
- Resource Packs > Sounds > step_sand4.fsb
- Resource Packs > Sounds > step_sand5.fsb
- Resource Packs > Sounds > step_sand6.fsb
Changes in version 1.19.60.3
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:collision_box": {
"width": 1.7,
"height": 2.375
} - New Value:
"minecraft:interact": {
"interactions": [
{
"play_sounds": "saddle",
"on_interact": {
"filters": {
"all_of": [
{
"test": "has_equipment",
"subject": "self",
"domain": "inventory",
"operator": "not",
"value": "saddle"
},
{
"test": "has_equipment",
"subject": "other",
"domain": "hand",
"value": "saddle"
},
{
"test": "is_family",
"subject": "other",
"value": "player"
},
{
"test": "is_sneaking",
"subject": "other",
"value": false
}
]
},
"target": "self"
},
"equip_item_slot": 0,
"interact_text": "action.interact.saddle"
}
]
} - New Value:
"minecraft:collision_box": {
"width": 1.7,
"height": 0.945
} - Previous Value:
"minecraft:collision_box": {
"width": 1.7,
"height": 2.375
} - Previous Value:
"minecraft:entity_transformed": {
"remove": [],
"add": {
"component_groups": [
"minecraft:camel_adult"
]
}
} - New Value:
"minecraft:scale": {
"value": 0.45
}Previous Value:"minecraft:scale": {
"value": 0.5
} - New Value:
"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.905,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.905,
-0.5
]
}
]
}Previous Value:"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.825,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.825,
-0.5
]
}
]
}
- Resource Packs > Models > camel.geo.json
- New Value:
"bones": [
{
"name": "root",
"pivot": [
0,
0,
0
],
"locators": {
"root_standing": [
0,
32,
0
],
"root_sitting": [
0,
12,
0
]
}
},
{
"name": "body",
"parent": "root",
"pivot": [
0.5,
20,
9.5
],
"cubes": [
{
"origin": [
-7.5,
20,
-14
],
"size": [
15,
12,
27
],
"uv": [
0,
25
]
}
],
"locators": {
"driver_seat": [
0,
30,
-11
],
"back_seat": [
0,
30,
10
]
}
},
{
"name": "saddle",
"parent": "body",
"pivot": [
0.5,
20,
9.5
],
"cubes": [
{
"origin": [
-4.5,
32,
-6
],
"size": [
9,
5,
11
],
"inflate": 0.1,
"uv": [
74,
64
]
},
{
"origin": [
-3.5,
37,
-6
],
"size": [
7,
3,
11
],
"inflate": 0.1,
"uv": [
92,
114
]
},
{
"origin": [
-7.5,
20,
-14
],
"size": [
15,
12,
27
],
"inflate": 0.1,
"uv": [
0,
89
]
}
]
},
{
"name": "tail",
"parent": "body",
"pivot": [
0,
29,
13
],
"cubes": [
{
"origin": [
-1.5,
15,
13
],
"size": [
3,
14,
0
],
"pivot": [
0,
29,
13
],
"rotation": [
0,
180,
0
],
"uv": [
122,
0
]
}
]
},
{
"name": "head",
"parent": "body",
"pivot": [
0.5,
25,
-10
],
"cubes": [
{
"origin": [
-3.5,
22,
-25
],
"size": [
7,
8,
19
],
"uv": [
60,
24
]
},
{
"origin": [
-3.5,
30,
-25
],
"size": [
7,
14,
7
],
"uv": [
21,
0
]
},
{
"origin": [
-2.5,
39,
-31
],
"size": [
5,
5,
6
],
"uv": [
50,
0
]
}
],
"locators": {
"lead": [
0,
25,
-15
]
}
},
{
"name": "bridle",
"parent": "head",
"pivot": [
0.5,
25,
-10
],
"cubes": [
{
"origin": [
-3.5,
22,
-25
],
"size": [
7,
8,
19
],
"inflate": 0.1,
"uv": [
60,
87
]
},
{
"origin": [
-3.5,
30,
-25
],
"size": [
7,
14,
7
],
"inflate": 0.1,
"uv": [
21,
64
]
},
{
"origin": [
-2.5,
39,
-31.1
],
"size": [
5,
5,
6
],
"inflate": 0.1,
"uv": [
50,
64
]
},
{
"origin": [
2.5,
40,
-28
],
"size": [
1,
2,
2
],
"uv": [
74,
70
]
},
{
"origin": [
-3.5,
40,
-28
],
"size": [
1,
2,
2
],
"uv": [
74,
70
],
"mirror": true
}
]
},
{
"name": "left_ear",
"parent": "head",
"pivot": [
3,
43,
-19.5
],
"cubes": [
{
"origin": [
3,
42.5,
-20.5
],
"size": [
3,
1,
2
],
"uv": [
45,
0
]
}
]
},
{
"name": "right_ear",
"parent": "head",
"pivot": [
-3,
43,
-19.5
],
"cubes": [
{
"origin": [
-6,
42.5,
-20.5
],
"size": [
3,
1,
2
],
"uv": [
67,
0
]
}
]
},
{
"name": "reins",
"parent": "head",
"pivot": [
3.7,
41,
-27
],
"cubes": [
{
"origin": [
3.7,
34,
-27
],
"size": [
0,
7,
15
],
"uv": [
98,
42
]
},
{
"origin": [
-3.7,
34,
-12
],
"size": [
7.4,
7,
0
],
"uv": [
84,
57
]
},
{
"origin": [
-3.7,
34,
-27
],
"size": [
0,
7,
15
],
"uv": [
98,
42
]
}
]
},
{
"name": "hump",
"parent": "body",
"pivot": [
0.5,
32,
0
],
"cubes": [
{
"origin": [
-4.5,
32,
-6
],
"size": [
9,
5,
11
],
"uv": [
74,
0
]
}
]
},
{
"name": "right_front_leg",
"parent": "root",
"pivot": [
-4.9,
23,
-10.5
],
"cubes": [
{
"origin": [
-7.4,
0,
-13
],
"size": [
5,
21,
5
],
"uv": [
0,
26
]
}
]
},
{
"name": "left_front_leg",
"parent": "root",
"pivot": [
4.9,
23,
-10.5
],
"cubes": [
{
"origin": [
2.4,
0,
-13
],
"size": [
5,
21,
5
],
"uv": [
0,
0
]
}
]
},
{
"name": "left_hind_leg",
"parent": "root",
"pivot": [
4.9,
23,
9.5
],
"cubes": [
{
"origin": [
2.4,
0,
7
],
"size": [
5,
21,
5
],
"uv": [
58,
16
]
}
]
},
{
"name": "right_hind_leg",
"parent": "root",
"pivot": [
-4.9,
23,
9.5
],
"cubes": [
{
"origin": [
-7.4,
0,
7
],
"size": [
5,
21,
5
],
"uv": [
94,
16
]
}
]
}
]Previous Value:"bones": [
{
"name": "root",
"pivot": [
0,
0,
0
]
},
{
"name": "body",
"parent": "root",
"pivot": [
0.5,
20,
9.5
],
"cubes": [
{
"origin": [
-7.5,
20,
-14
],
"size": [
15,
12,
27
],
"uv": [
0,
25
]
}
],
"locators": {
"driver_seat": [
0,
32,
-11
],
"back_seat": [
0,
32,
10
]
}
},
{
"name": "saddle",
"parent": "body",
"pivot": [
0.5,
20,
9.5
],
"cubes": [
{
"origin": [
-4.5,
32,
-6
],
"size": [
9,
5,
11
],
"inflate": 0.1,
"uv": [
74,
64
]
},
{
"origin": [
-3.5,
37,
-6
],
"size": [
7,
3,
11
],
"inflate": 0.1,
"uv": [
92,
114
]
},
{
"origin": [
-7.5,
20,
-14
],
"size": [
15,
12,
27
],
"inflate": 0.1,
"uv": [
0,
89
]
}
]
},
{
"name": "tail",
"parent": "body",
"pivot": [
0,
29,
13
],
"cubes": [
{
"origin": [
-1.5,
15,
13
],
"size": [
3,
14,
0
],
"pivot": [
0,
29,
13
],
"rotation": [
0,
180,
0
],
"uv": [
122,
0
]
}
]
},
{
"name": "head",
"parent": "body",
"pivot": [
0.5,
25,
-10
],
"cubes": [
{
"origin": [
-3.5,
22,
-25
],
"size": [
7,
8,
19
],
"uv": [
60,
24
]
},
{
"origin": [
-3.5,
30,
-25
],
"size": [
7,
14,
7
],
"uv": [
21,
0
]
},
{
"origin": [
-2.5,
39,
-31
],
"size": [
5,
5,
6
],
"uv": [
50,
0
]
}
],
"locators": {
"lead": [
0,
25,
-15
]
}
},
{
"name": "bridle",
"parent": "head",
"pivot": [
0.5,
25,
-10
],
"cubes": [
{
"origin": [
-3.5,
22,
-25
],
"size": [
7,
8,
19
],
"inflate": 0.1,
"uv": [
60,
87
]
},
{
"origin": [
-3.5,
30,
-25
],
"size": [
7,
14,
7
],
"inflate": 0.1,
"uv": [
21,
64
]
},
{
"origin": [
-2.5,
39,
-31.1
],
"size": [
5,
5,
6
],
"inflate": 0.1,
"uv": [
50,
64
]
},
{
"origin": [
2.5,
40,
-28
],
"size": [
1,
2,
2
],
"uv": [
74,
70
]
},
{
"origin": [
-3.5,
40,
-28
],
"size": [
1,
2,
2
],
"uv": [
74,
70
],
"mirror": true
}
]
},
{
"name": "left_ear",
"parent": "head",
"pivot": [
3,
43,
-19.5
],
"cubes": [
{
"origin": [
3,
42.5,
-20.5
],
"size": [
3,
1,
2
],
"uv": [
45,
0
]
}
]
},
{
"name": "right_ear",
"parent": "head",
"pivot": [
-3,
43,
-19.5
],
"cubes": [
{
"origin": [
-6,
42.5,
-20.5
],
"size": [
3,
1,
2
],
"uv": [
67,
0
]
}
]
},
{
"name": "reins",
"parent": "head",
"pivot": [
3.7,
41,
-27
],
"cubes": [
{
"origin": [
3.7,
34,
-27
],
"size": [
0,
7,
15
],
"uv": [
98,
42
]
},
{
"origin": [
-3.7,
34,
-12
],
"size": [
7.4,
7,
0
],
"uv": [
84,
57
]
},
{
"origin": [
-3.7,
34,
-27
],
"size": [
0,
7,
15
],
"uv": [
98,
42
]
}
]
},
{
"name": "hump",
"parent": "body",
"pivot": [
0.5,
32,
0
],
"cubes": [
{
"origin": [
-4.5,
32,
-6
],
"size": [
9,
5,
11
],
"uv": [
74,
0
]
}
]
},
{
"name": "right_front_leg",
"parent": "root",
"pivot": [
-4.9,
23,
-10.5
],
"cubes": [
{
"origin": [
-7.4,
0,
-13
],
"size": [
5,
21,
5
],
"uv": [
0,
26
]
}
]
},
{
"name": "left_front_leg",
"parent": "root",
"pivot": [
4.9,
23,
-10.5
],
"cubes": [
{
"origin": [
2.4,
0,
-13
],
"size": [
5,
21,
5
],
"uv": [
0,
0
]
}
]
},
{
"name": "left_hind_leg",
"parent": "root",
"pivot": [
4.9,
23,
9.5
],
"cubes": [
{
"origin": [
2.4,
0,
7
],
"size": [
5,
21,
5
],
"uv": [
58,
16
]
}
]
},
{
"name": "right_hind_leg",
"parent": "root",
"pivot": [
-4.9,
23,
9.5
],
"cubes": [
{
"origin": [
-7.4,
0,
7
],
"size": [
5,
21,
5
],
"uv": [
94,
16
]
}
]
}
]
- Resource Packs > Textures > camel.png
- Hover/Tap to zoom...
Changes in version 1.19.60.22
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:interact": {
"interactions": [
{
"play_sounds": "saddle",
"on_interact": {
"filters": {
"all_of": [
{
"test": "has_equipment",
"subject": "self",
"domain": "inventory",
"operator": "not",
"value": "saddle"
},
{
"test": "has_equipment",
"subject": "other",
"domain": "hand",
"value": "saddle"
},
{
"test": "is_family",
"subject": "other",
"value": "player"
},
{
"test": "is_sneaking",
"subject": "other",
"value": false
}
]
},
"target": "self"
},
"equip_item_slot": 0,
"interact_text": "action.interact.saddle"
}
]
}
Changes in version 1.19.60.20
- Behavior Packs > Entities > camel.json
- Previous Value:
"minecraft:interact": {
"interactions": [
{
"play_sounds": "saddle",
"on_interact": {
"filters": {
"all_of": [
{
"test": "has_equipment",
"subject": "self",
"domain": "inventory",
"operator": "not",
"value": "saddle"
},
{
"test": "has_equipment",
"subject": "other",
"domain": "hand",
"value": "saddle"
},
{
"test": "is_family",
"subject": "other",
"value": "player"
},
{
"test": "is_sneaking",
"subject": "other",
"value": false
}
]
},
"target": "self"
},
"equip_item_slot": 0,
"interact_text": "action.interact.saddle"
}
]
}
Changes in version 1.19.50.23
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"jump_prevented_value": 0.5625
} - New Value:
"minecraft:behavior.float": {
"priority": 0,
"sink_with_passengers": true
}Previous Value:"minecraft:behavior.float": {
"priority": 0
}
- Resource Packs > Animations > camel.animation.json
- New Value:
"animation.camel.sit_down": {
"loop": "hold_on_last_frame",
"animation_length": 2,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.3": [
30,
0,
0
],
"1.8": [
24,
0,
0
],
"2.0": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.3": [
0,
0,
1
],
"1.8": [
0,
-6,
1
],
"2.0": [
0,
-19.9,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
-10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
-3,
0
],
"1.9": [
-65,
-9,
0
],
"2.0": [
-90,
-15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
1,
-0.62,
0.25
],
"1.9": [
0.5,
-11.25,
2.5
],
"2.0": [
1,
-20.5,
5
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
3,
0
],
"1.9": [
-65,
9,
0
],
"2.0": [
-90,
15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
-1,
-0.62,
0.25
],
"1.9": [
-0.5,
-11.25,
2.5
],
"2.0": [
-1,
-20.5,
5
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
],
"2.1": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
},
"tail": {
"rotation": {
"0.0": [
5,
0,
0
],
"1.7": [
5,
0,
0
],
"1.9": [
80,
0,
0
],
"2.0": [
50,
0,
0
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "sit_down"
}
}
} - New Value:
"animation.camel.stand_up": {
"loop": "hold_on_last_frame",
"animation_length": 2.6,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": {
"pre": [
-17.5,
0,
0
],
"post": [
-17.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
-17.83,
0,
0
],
"lerp_mode": "catmullrom"
},
"2.3": [
-5.83,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-19.9,
0
],
"0.7": [
0,
-19.9,
-3
],
"1.4": {
"pre": [
0,
-12.76,
-4
],
"post": [
0,
-12.76,
-4
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
0,
-10.1,
-4
],
"lerp_mode": "catmullrom"
},
"2.3": [
0,
-2.9,
-2
],
"2.6": [
0,
0,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
-90,
10,
0
],
"0.5": [
-90,
10,
0
],
"1.1": [
-49.06,
10,
0
],
"1.8": [
-22.5,
10,
0
],
"2.3": [
-25,
10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
-90,
-10,
0
],
"0.5": [
-90,
-10,
0
],
"1.1": [
-49.06,
-10,
0
],
"1.8": [
-22.5,
-10,
0
],
"2.3": [
-25,
-10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
-90,
-15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
1,
-20.5,
5
],
"0.3": [
-2,
-20.5,
3
],
"0.6": [
-2,
-20.5,
3
],
"1.1": [
-2,
-10.5,
2
],
"1.5": [
-2,
-0.4,
-3.9
],
"1.9": [
-2,
-4.3,
-9.8
],
"2.2": [
-1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
-90,
15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
-1,
-20.5,
5
],
"0.3": [
2,
-20.5,
3
],
"0.6": [
2,
-20.5,
3
],
"1.1": [
2,
-10.5,
2
],
"1.5": [
2,
-0.4,
-3.9
],
"1.9": [
2,
-4.3,
-9.8
],
"2.2": [
1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.3": [
0,
0,
0
],
"0.8": [
55,
0,
0
],
"2.0": [
65,
0,
0
],
"2.4": [
0,
0,
0
]
}
},
"tail": {
"rotation": {
"0.0": [
50,
0,
0
],
"0.4": [
55,
0,
0
],
"0.9": [
55,
0,
0
],
"1.5": [
17.5,
0,
0
],
"2.6": [
5,
0,
0
]
}
},
"left_ear": {
"rotation": {
"0.0": [
0,
0,
-45
],
"2.6": [
0,
0,
-45
]
}
},
"right_ear": {
"rotation": {
"0.0": [
0,
0,
45
],
"2.6": [
0,
0,
45
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "stand_up"
}
}
} - Previous Value:
"animation_length": 2
- Previous Value:
"sound_effects": {
"0.0": {
"effect": "sitting"
}
} - Previous Value:
"animation.camel.standup": {
"loop": "hold_on_last_frame",
"animation_length": 2.6,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": {
"pre": [
-17.5,
0,
0
],
"post": [
-17.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
-17.83,
0,
0
],
"lerp_mode": "catmullrom"
},
"2.3": [
-5.83,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-19.9,
0
],
"0.7": [
0,
-19.9,
-3
],
"1.4": {
"pre": [
0,
-12.76,
-4
],
"post": [
0,
-12.76,
-4
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
0,
-10.1,
-4
],
"lerp_mode": "catmullrom"
},
"2.3": [
0,
-2.9,
-2
],
"2.6": [
0,
0,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
-90,
10,
0
],
"0.5": [
-90,
10,
0
],
"1.1": [
-49.06,
10,
0
],
"1.8": [
-22.5,
10,
0
],
"2.3": [
-25,
10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
-90,
-10,
0
],
"0.5": [
-90,
-10,
0
],
"1.1": [
-49.06,
-10,
0
],
"1.8": [
-22.5,
-10,
0
],
"2.3": [
-25,
-10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
-90,
-15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
1,
-20.5,
5
],
"0.3": [
-2,
-20.5,
3
],
"0.6": [
-2,
-20.5,
3
],
"1.1": [
-2,
-10.5,
2
],
"1.5": [
-2,
-0.4,
-3.9
],
"1.9": [
-2,
-4.3,
-9.8
],
"2.2": [
-1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
-90,
15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
-1,
-20.5,
5
],
"0.3": [
2,
-20.5,
3
],
"0.6": [
2,
-20.5,
3
],
"1.1": [
2,
-10.5,
2
],
"1.5": [
2,
-0.4,
-3.9
],
"1.9": [
2,
-4.3,
-9.8
],
"2.2": [
1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.3": [
0,
0,
0
],
"0.8": [
55,
0,
0
],
"2.0": [
65,
0,
0
],
"2.4": [
0,
0,
0
]
}
},
"tail": {
"rotation": {
"0.0": [
50,
0,
0
],
"0.4": [
55,
0,
0
],
"0.9": [
55,
0,
0
],
"1.5": [
17.5,
0,
0
],
"2.6": [
5,
0,
0
]
}
},
"left_ear": {
"rotation": {
"0.0": [
0,
0,
-45
],
"2.6": [
0,
0,
-45
]
}
},
"right_ear": {
"rotation": {
"0.0": [
0,
0,
45
],
"2.6": [
0,
0,
45
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "stand_up"
}
}
} - New Value:
"body": {
"rotation": [
0,
0,
0
],
"position": [
0,
-19.9,
0
]
}Previous Value:"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.3": [
30,
0,
0
],
"1.8": [
24,
0,
0
],
"2.0": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.3": [
0,
0,
1
],
"1.8": [
0,
-6,
1
],
"2.0": [
0,
-19.9,
0
]
}
} - New Value:
"left_front_leg": {
"rotation": [
-90,
-10,
0
],
"position": [
0,
-20.6,
12
]
}Previous Value:"left_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
-10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
} - New Value:
"right_front_leg": {
"rotation": [
-90,
10,
0
],
"position": [
0,
-20.6,
12
]
}Previous Value:"right_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
} - New Value:
"right_hind_leg": {
"rotation": [
-90,
15,
0
],
"position": [
-1,
-20.5,
5
]
}Previous Value:"right_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
3,
0
],
"1.9": [
-65,
9,
0
],
"2.0": [
-90,
15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
-1,
-0.62,
0.25
],
"1.9": [
-0.5,
-11.25,
2.5
],
"2.0": [
-1,
-20.5,
5
]
}
} - New Value:
"head": {
"rotation": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}Previous Value:"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
],
"2.1": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
} - New Value:
"left_hind_leg": {
"rotation": [
-90,
-15,
0
],
"position": [
1,
-20.5,
5
]
}Previous Value:"left_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
-3,
0
],
"1.9": [
-65,
-9,
0
],
"2.0": [
-90,
-15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
1,
-0.62,
0.25
],
"1.9": [
0.5,
-11.25,
2.5
],
"2.0": [
1,
-20.5,
5
]
}
} - New Value:
"tail": {
"rotation": [
50,
0,
0
]
}Previous Value:"tail": {
"rotation": {
"0.0": [
5,
0,
0
],
"1.7": [
5,
0,
0
],
"1.9": [
80,
0,
0
],
"2.0": [
50,
0,
0
]
}
}
- Resource Packs > Animation Controllers > camel.animation_controllers.json
- New Value:
"sit_down": {
"animations": [
"sit_down"
],
"transitions": [
{
"stand_up": "!query.is_sitting"
}
],
"blend_transition": 0.5
} - New Value:
"idling": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.5
} - New Value:
"default": {
"transitions": [
{
"idling": "!query.is_sitting"
},
{
"sitting": "query.is_sitting"
}
],
"blend_transition": 0
}Previous Value:"default": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sitting": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.5
} - New Value:
"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"idling": "!variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.2
}Previous Value:"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"default": "!variable.moving"
},
{
"sitting": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.2
} - New Value:
"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sit_down": "query.is_sitting"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sitting": "query.is_sitting"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
} - New Value:
"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"idling": "(query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"default": "(query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
}
- Resource Packs > Entity > camel.entity.json
- New Value:
"animations": {
"moving": "animation.camel.walk",
"sit_down": "animation.camel.sit_down",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.stand_up",
"look_at_player": "animation.camel.look_at_player",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
}Previous Value:"animations": {
"moving": "animation.camel.walk",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.standup",
"look_at_player": "animation.camel.look_at_player",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
} - New Value:
"sound_effects": {
"sit_down": "mob.camel.sit",
"stand_up": "mob.camel.stand",
"dashing": "mob.camel.dash"
}Previous Value:"sound_effects": {
"sitting": "mob.camel.sit",
"stand_up": "mob.camel.stand",
"dashing": "mob.camel.dash"
}
Changes in version 1.19.50.22
- Behavior Packs > Entities > camel.json
- Previous Value:
"minecraft:horse.jump_strength": {
"value": {
"range_min": 0.5,
"range_max": 0.5
}
} - New Value:
"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.825,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.825,
-0.5
]
}
]
}Previous Value:"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.9,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.9,
-0.5
]
}
]
}
- Resource Packs > Animations > camel.animation.json
- New Value:
"loop": true
- New Value:
"right_hind_leg": {
"rotation": {
"0.0": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.625": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.375": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"0.625": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
}Previous Value:"right_hind_leg": {
"rotation": {
"0.0": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.2083": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
} - New Value:
"left_hind_leg": {
"rotation": {
"0.0": {
"post": [
-20.4,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.375": [
-22.5,
0,
0
],
"1.5": [
-20.4,
0,
0
]
},
"position": {
"0.0": {
"post": [
0,
-0.21,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.0833": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"1.375": [
0,
0,
0
],
"1.5": [
0,
-0.21,
0
]
}
}Previous Value:"left_hind_leg": {
"rotation": {
"0.0": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.4583": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
}
- Resource Packs > Animation Controllers > camel.animation_controllers.json
- New Value:
"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"default": "(query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"default": "(!query.has_dash_cooldown || query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(!query.has_dash_cooldown || query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
}
- Resource Packs > Entity > camel.entity.json
- New Value:
"spawn_egg": {
"base_color": "#fcc369",
"overlay_color": "#cb9337"
}Previous Value:"spawn_egg": {
"base_color": "#9c6a1a",
"overlay_color": "#e3b771"
}
Changes in version 1.19.50.21
- Behavior Packs > Entities > camel.json
- New Value:
"minecraft:horse.jump_strength": {
"value": {
"range_min": 0.5,
"range_max": 0.5
}
} - Previous Value:
"minecraft:variable_max_auto_step": {
"base_value": 1.5625,
"jump_prevented_value": 0.5625
} - New Value:
"minecraft:behavior.float": {
"priority": 0
}Previous Value:"minecraft:behavior.float": {
"priority": 0,
"sink_with_passengers": true
} - New Value:
"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.9,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.9,
-0.5
]
}
]
}Previous Value:"minecraft:rideable": {
"seat_count": 2,
"crouching_skip_interact": true,
"pull_in_entities": true,
"family_types": [
"player"
],
"interact_text": "action.interact.ride.horse",
"seats": [
{
"min_rider_count": 0,
"max_rider_count": 2,
"position": [
0,
1.825,
0.5
]
},
{
"min_rider_count": 1,
"max_rider_count": 2,
"position": [
0,
1.825,
-0.5
]
}
]
}
- Resource Packs > Animations > camel.animation.json
- New Value:
"animation_length": 2
- New Value:
"sound_effects": {
"0.0": {
"effect": "sitting"
}
} - New Value:
"animation.camel.standup": {
"loop": "hold_on_last_frame",
"animation_length": 2.6,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": {
"pre": [
-17.5,
0,
0
],
"post": [
-17.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
-17.83,
0,
0
],
"lerp_mode": "catmullrom"
},
"2.3": [
-5.83,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-19.9,
0
],
"0.7": [
0,
-19.9,
-3
],
"1.4": {
"pre": [
0,
-12.76,
-4
],
"post": [
0,
-12.76,
-4
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
0,
-10.1,
-4
],
"lerp_mode": "catmullrom"
},
"2.3": [
0,
-2.9,
-2
],
"2.6": [
0,
0,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
-90,
10,
0
],
"0.5": [
-90,
10,
0
],
"1.1": [
-49.06,
10,
0
],
"1.8": [
-22.5,
10,
0
],
"2.3": [
-25,
10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
-90,
-10,
0
],
"0.5": [
-90,
-10,
0
],
"1.1": [
-49.06,
-10,
0
],
"1.8": [
-22.5,
-10,
0
],
"2.3": [
-25,
-10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
-90,
-15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
1,
-20.5,
5
],
"0.3": [
-2,
-20.5,
3
],
"0.6": [
-2,
-20.5,
3
],
"1.1": [
-2,
-10.5,
2
],
"1.5": [
-2,
-0.4,
-3.9
],
"1.9": [
-2,
-4.3,
-9.8
],
"2.2": [
-1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
-90,
15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
-1,
-20.5,
5
],
"0.3": [
2,
-20.5,
3
],
"0.6": [
2,
-20.5,
3
],
"1.1": [
2,
-10.5,
2
],
"1.5": [
2,
-0.4,
-3.9
],
"1.9": [
2,
-4.3,
-9.8
],
"2.2": [
1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.3": [
0,
0,
0
],
"0.8": [
55,
0,
0
],
"2.0": [
65,
0,
0
],
"2.4": [
0,
0,
0
]
}
},
"tail": {
"rotation": {
"0.0": [
50,
0,
0
],
"0.4": [
55,
0,
0
],
"0.9": [
55,
0,
0
],
"1.5": [
17.5,
0,
0
],
"2.6": [
5,
0,
0
]
}
},
"left_ear": {
"rotation": {
"0.0": [
0,
0,
-45
],
"2.6": [
0,
0,
-45
]
}
},
"right_ear": {
"rotation": {
"0.0": [
0,
0,
45
],
"2.6": [
0,
0,
45
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "stand_up"
}
}
} - Previous Value:
"loop": true
- Previous Value:
"animation.camel.sit_down": {
"loop": "hold_on_last_frame",
"animation_length": 2,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.3": [
30,
0,
0
],
"1.8": [
24,
0,
0
],
"2.0": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.3": [
0,
0,
1
],
"1.8": [
0,
-6,
1
],
"2.0": [
0,
-19.9,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
-10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
-3,
0
],
"1.9": [
-65,
-9,
0
],
"2.0": [
-90,
-15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
1,
-0.62,
0.25
],
"1.9": [
0.5,
-11.25,
2.5
],
"2.0": [
1,
-20.5,
5
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
-10,
0,
0
],
"1.7": [
-15,
3,
0
],
"1.9": [
-65,
9,
0
],
"2.0": [
-90,
15,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"0.5": [
0,
0,
0
],
"1.5": [
0,
0,
1
],
"1.7": [
-1,
-0.62,
0.25
],
"1.9": [
-0.5,
-11.25,
2.5
],
"2.0": [
-1,
-20.5,
5
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
],
"2.1": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
},
"tail": {
"rotation": {
"0.0": [
5,
0,
0
],
"1.7": [
5,
0,
0
],
"1.9": [
80,
0,
0
],
"2.0": [
50,
0,
0
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "sit_down"
}
}
} - Previous Value:
"animation.camel.stand_up": {
"loop": "hold_on_last_frame",
"animation_length": 2.6,
"bones": {
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": {
"pre": [
-17.5,
0,
0
],
"post": [
-17.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
-17.83,
0,
0
],
"lerp_mode": "catmullrom"
},
"2.3": [
-5.83,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-19.9,
0
],
"0.7": [
0,
-19.9,
-3
],
"1.4": {
"pre": [
0,
-12.76,
-4
],
"post": [
0,
-12.76,
-4
],
"lerp_mode": "catmullrom"
},
"1.8": {
"post": [
0,
-10.1,
-4
],
"lerp_mode": "catmullrom"
},
"2.3": [
0,
-2.9,
-2
],
"2.6": [
0,
0,
0
]
}
},
"right_front_leg": {
"rotation": {
"0.0": [
-90,
10,
0
],
"0.5": [
-90,
10,
0
],
"1.1": [
-49.06,
10,
0
],
"1.8": [
-22.5,
10,
0
],
"2.3": [
-25,
10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_front_leg": {
"rotation": {
"0.0": [
-90,
-10,
0
],
"0.5": [
-90,
-10,
0
],
"1.1": [
-49.06,
-10,
0
],
"1.8": [
-22.5,
-10,
0
],
"2.3": [
-25,
-10,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
-20.6,
12
],
"0.5": [
0,
-20.6,
8
],
"1.1": [
0,
-7.14,
4.42
],
"1.8": [
0,
-1.27,
-1.33
],
"2.3": [
0,
-1.27,
-0.33
],
"2.6": [
0,
0,
0
]
}
},
"left_hind_leg": {
"rotation": {
"0.0": [
-90,
-15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
1,
-20.5,
5
],
"0.3": [
-2,
-20.5,
3
],
"0.6": [
-2,
-20.5,
3
],
"1.1": [
-2,
-10.5,
2
],
"1.5": [
-2,
-0.4,
-3.9
],
"1.9": [
-2,
-4.3,
-9.8
],
"2.2": [
-1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"right_hind_leg": {
"rotation": {
"0.0": [
-90,
15,
0
],
"0.3": [
-90,
0,
0
],
"0.6": [
-90,
0,
0
],
"1.1": [
-60,
0,
0
],
"1.9": [
35,
0,
0
],
"2.2": [
30,
0,
0
],
"2.6": [
0,
0,
0
]
},
"position": {
"0.0": [
-1,
-20.5,
5
],
"0.3": [
2,
-20.5,
3
],
"0.6": [
2,
-20.5,
3
],
"1.1": [
2,
-10.5,
2
],
"1.5": [
2,
-0.4,
-3.9
],
"1.9": [
2,
-4.3,
-9.8
],
"2.2": [
1,
-2.5,
-5
],
"2.6": [
0,
0,
0
]
}
},
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.3": [
0,
0,
0
],
"0.8": [
55,
0,
0
],
"2.0": [
65,
0,
0
],
"2.4": [
0,
0,
0
]
}
},
"tail": {
"rotation": {
"0.0": [
50,
0,
0
],
"0.4": [
55,
0,
0
],
"0.9": [
55,
0,
0
],
"1.5": [
17.5,
0,
0
],
"2.6": [
5,
0,
0
]
}
},
"left_ear": {
"rotation": {
"0.0": [
0,
0,
-45
],
"2.6": [
0,
0,
-45
]
}
},
"right_ear": {
"rotation": {
"0.0": [
0,
0,
45
],
"2.6": [
0,
0,
45
]
}
}
},
"sound_effects": {
"0.0": {
"effect": "stand_up"
}
}
} - New Value:
"body": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.3": [
30,
0,
0
],
"1.8": [
24,
0,
0
],
"2.0": [
0,
0,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.3": [
0,
0,
1
],
"1.8": [
0,
-6,
1
],
"2.0": [
0,
-19.9,
0
]
}
}Previous Value:"body": {
"rotation": [
0,
0,
0
],
"position": [
0,
-19.9,
0
]
} - New Value:
"left_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
-10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
}Previous Value:"left_front_leg": {
"rotation": [
-90,
-10,
0
],
"position": [
0,
-20.6,
12
]
} - New Value:
"right_front_leg": {
"rotation": {
"0.0": [
0,
0,
0
],
"1.0": [
-30,
0,
0
],
"1.5": [
-30,
0,
0
],
"2.0": [
-90,
10,
0
]
},
"position": {
"0.0": [
0,
0,
0
],
"1.0": [
0,
-2,
11
],
"1.5": [
0,
-2,
11
],
"1.7": [
0,
-8.4,
11.4
],
"2.0": [
0,
-20.6,
12
]
}
}Previous Value:"right_front_leg": {
"rotation": [
-90,
10,
0
],
"position": [
0,
-20.6,
12
]
} - New Value:
"right_hind_leg": {
"rotation": {
"0.0": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.2083": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
}Previous Value:"right_hind_leg": {
"rotation": {
"0.0": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.625": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.375": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"0.625": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
} - New Value:
"head": {
"rotation": {
"0.0": [
0,
0,
0
],
"0.7": [
-27.5,
0,
0
],
"1.5": [
-21.25,
0,
0
],
"2.0": [
0,
0,
0
],
"2.1": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
}
}Previous Value:"head": {
"rotation": [
0,
"math.clamp(query.target_y_rotation, -30, 30)",
0
]
} - New Value:
"left_hind_leg": {
"rotation": {
"0.0": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
-22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
}
},
"position": {
"0.0": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.4583": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.5": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
}
}
}Previous Value:"left_hind_leg": {
"rotation": {
"0.0": {
"post": [
-20.4,
0,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
22.5,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.375": [
-22.5,
0,
0
],
"1.5": [
-20.4,
0,
0
]
},
"position": {
"0.0": {
"post": [
0,
-0.21,
0
],
"lerp_mode": "catmullrom"
},
"0.75": {
"post": [
0,
0,
0
],
"lerp_mode": "catmullrom"
},
"1.0833": {
"post": [
0,
4,
0
],
"lerp_mode": "catmullrom"
},
"1.375": [
0,
0,
0
],
"1.5": [
0,
-0.21,
0
]
}
} - New Value:
"tail": {
"rotation": {
"0.0": [
5,
0,
0
],
"1.7": [
5,
0,
0
],
"1.9": [
80,
0,
0
],
"2.0": [
50,
0,
0
]
}
}Previous Value:"tail": {
"rotation": [
50,
0,
0
]
}
- Resource Packs > Animation Controllers > camel.animation_controllers.json
- Previous Value:
"sit_down": {
"animations": [
"sit_down"
],
"transitions": [
{
"stand_up": "!query.is_sitting"
}
],
"blend_transition": 0.5
} - Previous Value:
"idling": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.5
} - New Value:
"default": {
"transitions": [
{
"moving": "variable.moving"
},
{
"sitting": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.5
}Previous Value:"default": {
"transitions": [
{
"idling": "!query.is_sitting"
},
{
"sitting": "query.is_sitting"
}
],
"blend_transition": 0
} - New Value:
"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sitting": "query.is_sitting"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"stand_up": {
"animations": [
"stand_up"
],
"transitions": [
{
"sit_down": "query.is_sitting"
},
{
"moving": "variable.moving"
}
],
"blend_transition": 0.5
} - New Value:
"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"default": "(!query.has_dash_cooldown || query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(!query.has_dash_cooldown || query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
}Previous Value:"dashing": {
"animations": [
"dashing"
],
"transitions": [
{
"idling": "(query.is_on_ground || query.is_in_water) && !variable.moving"
},
{
"moving": "(query.is_on_ground || query.is_in_water) && variable.moving"
}
],
"blend_transition": 0.5
} - New Value:
"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"default": "!variable.moving"
},
{
"sitting": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.2
}Previous Value:"moving": {
"animations": [
{
"moving": "math.min(1.0, math.lerp(0.2, 1.5, query.modified_move_speed))"
}
],
"transitions": [
{
"idling": "!variable.moving"
},
{
"sit_down": "query.is_sitting"
},
{
"dashing": "query.has_dash_cooldown && !query.is_on_ground && !query.is_in_water"
}
],
"blend_transition": 0.2
}
- Resource Packs > Entity > camel.entity.json
- New Value:
"animations": {
"moving": "animation.camel.walk",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.standup",
"look_at_player": "animation.camel.look_at_player",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
}Previous Value:"animations": {
"moving": "animation.camel.walk",
"sit_down": "animation.camel.sit_down",
"sitting": "animation.camel.sit",
"stand_up": "animation.camel.stand_up",
"look_at_player": "animation.camel.look_at_player",
"dashing": "animation.camel.dash",
"idle": "animation.camel.idle"
} - New Value:
"sound_effects": {
"sitting": "mob.camel.sit",
"stand_up": "mob.camel.stand",
"dashing": "mob.camel.dash"
}Previous Value:"sound_effects": {
"sit_down": "mob.camel.sit",
"stand_up": "mob.camel.stand",
"dashing": "mob.camel.dash"
} - New Value:
"spawn_egg": {
"base_color": "#9c6a1a",
"overlay_color": "#e3b771"
}Previous Value:"spawn_egg": {
"base_color": "#fcc369",
"overlay_color": "#cb9337"
}
Entity Histories...
- Agent
- Allay
- Area Effect Cloud
- Armor Stand
- Arrow
- Axolotl
- Bat
- Bee
- Blaze
- Boat
- Camel
- Cat
- Cave Spider
- Chest Boat
- Chest Minecart
- Chicken
- Cod
- Command Block Minecart
- Cow
- Creeper
- Dolphin
- Donkey
- Dragon Fireball
- Drowned
- Egg
- Elder Guardian
- Enderman
- Endermite
- Ender Crystal
- Ender Dragon
- Ender Pearl
- Evocation Illager
- Eye Of Ender Signal
- Fireball
- Fireworks Rocket
- Fishing Hook
- Fox
- Frog
- Ghast
- Glow Squid
- Goat
- Guardian
- Hoglin
- Hopper Minecart
- Horse
- Husk
- Iron Golem
- Lightning Bolt
- Lingering Potion
- Llama
- Llama Spit
- Magma Cube
- Minecart
- Mooshroom
- Mule
- Npc
- Ocelot
- Panda
- Parrot
- Phantom
- Pig
- Piglin
- Piglin Brute
- Pillager
- Player
- Polar Bear
- Pufferfish
- Rabbit
- Ravager
- Salmon
- Sheep
- Shulker
- Shulker Bullet
- Silverfish
- Skeleton
- Skeleton Horse
- Slime
- Small Fireball
- Sniffer
- Snowball
- Snow Golem
- Spider
- Splash Potion
- Squid
- Stray
- Strider
- Tadpole
- Thrown Trident
- Tnt
- Tnt Minecart
- Trader Llama
- Tripod Camera
- Tropicalfish
- Turtle
- Vex
- Villager
- Villager V2
- Vindicator
- Wandering Trader
- Warden
- Witch
- Wither
- Wither Skeleton
- Wither Skull
- Wither Skull Dangerous
- Wolf
- Xp Bottle
- Xp Orb
- Zoglin
- Zombie
- Zombie Horse
- Zombie Pigman
- Zombie Villager
- Zombie Villager V2
Links
©
2023, FoxyNoTail