How to create a human walking movement in Blender using BVH file?

I was looking for some way to create a human walking in Blender and fortunately found this nice video tutorial:

I needed to modify the retarget python script because after python 3.10 float to int conversion is not automatic anymore, so you need to do it too.

vi .config/blender/3.0/scripts/addons/retarget-bvh/retarget.py

And add int() casting:

scn.frame_current = int(frames[0])

and here:

scn.frame_set(int(frame))

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s