I've replaced the vanilla cow with a custom "Kalabaw" model. The model and texture are working fine in the game, but the walk animation doesn't play when the mob moves. It just slides.
Can anyone see what might be wrong with my files?
This is my cow.entity.json file
{
"format_version": "1.10.0",
"minecraft:client_entity": {
"description": {
"identifier": "minecraft:cow",
"materials": {
"default": "cow"
},
"textures": {
"default": "textures/entity/kalabaw"
},
"geometry": {
"default": "geometry.kalabaw"
},
"animations": {
"walk": "animation.kalabaw.walk",
"look_at_target": "animation.common.look_at_target",
"baby_transform": "animation.cow.baby_transform"
},
"scripts": {
"animate": [
"look_at_target",
{
"walk": "query.modified_move_speed"
}
]
},
"render_controllers": [
"controller.render.cow"
]
}
}
}