22 lines
501 B
Markdown
22 lines
501 B
Markdown
|
---
|
|||
|
title: BVH相关
|
|||
|
date: 2024-01-07 12:33:20
|
|||
|
excerpt:
|
|||
|
tags:
|
|||
|
rating: ⭐
|
|||
|
---
|
|||
|
# BVH库
|
|||
|
- c++
|
|||
|
- https://github.com/BartekkPL/bvh-parser
|
|||
|
- Maya
|
|||
|
- https://github.com/jhoolmans/mayaImporterBVH
|
|||
|
|
|||
|
```python
|
|||
|
import bvh_importer
|
|||
|
bvh_importer.BVHImporterDialog()
|
|||
|
```
|
|||
|
# Blender FBX => BVH
|
|||
|
>因为Blender轴向与FBX不同。所以通过Blender导入FBX再导出BHV到Maya结果是错的。
|
|||
|
|
|||
|
**Blender需要导出YZX轴向BVH,导入Maya后结果才正确。** 之后还需要手动将根骨骼改成root。
|