1
0
mirror of https://github.com/Mojang/bedrock-samples.git synced 2024-11-13 14:49:28 +00:00
bedrock-samples/resource_pack/animations/quadruped.animation.json
Mike Ammerlaan a3b394c507 1.19.30
Initial layout
2022-09-23 06:24:26 -07:00

24 lines
577 B
JSON

{
"format_version" : "1.8.0",
"animations" : {
"animation.quadruped.walk" : {
"anim_time_update" : "query.modified_distance_moved",
"loop" : true,
"bones" : {
"leg0" : {
"rotation" : [ "math.cos(query.anim_time * 38.17) * 80.0", 0.0, 0.0 ]
},
"leg1" : {
"rotation" : [ "math.cos(query.anim_time * 38.17) * -80.0", 0.0, 0.0 ]
},
"leg2" : {
"rotation" : [ "math.cos(query.anim_time * 38.17) * -80.0", 0.0, 0.0 ]
},
"leg3" : {
"rotation" : [ "math.cos(query.anim_time * 38.17) * 80.0", 0.0, 0.0 ]
}
}
}
}
}