vault backup: 2023-11-11 23:25:46

This commit is contained in:
BlueRose 2023-11-11 23:25:46 +08:00
parent cc5b5232ff
commit 44fe532002

View File

@ -227,4 +227,10 @@ void StoreRestPose(FbxScene* pScene, FbxNode* pSkeletonRoot)
```
## GlobalSettings
场景的轴系统、系统单位、环境照明和时间设置可以通过`FbxScene::GetGlobalSettings()`获取FbxGlobalSettings来进行定义。
场景的轴系统、系统单位、环境照明和时间设置可以通过`FbxScene::GetGlobalSettings()`获取FbxGlobalSettings来进行定义。
## FBXStream & 共享内存
FBXStream案例:https://github.com/hamedsabri/FbxStream
之前考虑通过共享内存来实现文件传递以此来规避IO瓶颈这里可以考虑参考FBXStream。本质是通过文字流使得 文件 <=> string。
这样就可以通过共享内存进行数据传递了。